12345678910111213141516171819202122232425262728293031323334353637 |
- <UserControl x:Class="PDF_Office.Views.HomePanel.CloudDocs.CloudDiskContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Office.Views.HomePanel.CloudDocs"
- mc:Ignorable="d" Background="White"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid Margin="44,38,0,0">
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="auto"/>
- </Grid.RowDefinitions>
- <Grid HorizontalAlignment="Stretch">
- <TextBlock Text="Cloud disk" HorizontalAlignment="Left"/>
- <ComboBox x:Name="combCloudDisk" Width="115" Height="32" Background="Wheat" HorizontalAlignment="Right"/>
- </Grid>
- <ListBox x:Name="ListCloudDisk" Grid.Row="1">
-
- <ListBox.ItemsPanel>
- <ItemsPanelTemplate>
- <UniformGrid Columns="4"/>
- </ItemsPanelTemplate>
- </ListBox.ItemsPanel>
- <ListBox.ItemTemplate>
- <DataTemplate>
- <Border Background="#DBDBDB" Width="218" Height="172">
- <TextBlock Text="{Binding}"/>
- </Border>
- </DataTemplate>
- </ListBox.ItemTemplate>
- </ListBox>
- </Grid>
- </UserControl>
|