CloudFilesContent.xaml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <UserControl x:Class="PDF_Office.Views.HomePanel.CloudDocs.CloudFilesContent"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PDF_Office.Views.HomePanel.CloudDocs"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="auto"/>
  12. <RowDefinition Height="auto"/>
  13. </Grid.RowDefinitions>
  14. <Grid HorizontalAlignment="Stretch">
  15. <Grid.ColumnDefinitions>
  16. <ColumnDefinition />
  17. <ColumnDefinition Width="auto"/>
  18. </Grid.ColumnDefinitions>
  19. <ListBox x:Name="ListFolder">
  20. <ListBox.ItemsPanel>
  21. <ItemsPanelTemplate>
  22. <WrapPanel Orientation="Horizontal"/>
  23. </ItemsPanelTemplate>
  24. </ListBox.ItemsPanel>
  25. </ListBox>
  26. <ComboBox x:Name="combCloudDisk" Grid.Column="1" Width="115" Height="32" Background="Wheat" HorizontalAlignment="Right"/>
  27. </Grid>
  28. <Grid Grid.Row="1">
  29. <Grid.ColumnDefinitions>
  30. <ColumnDefinition Width="Auto"/>
  31. <ColumnDefinition/>
  32. </Grid.ColumnDefinitions>
  33. <ListBox x:Name="Listusers" Width="170"/>
  34. <ListView x:Name="ListvmFiles" Grid.Column="1" />
  35. </Grid>
  36. </Grid>
  37. </UserControl>