12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <UserControl
- x:Class="PDF_Master.Views.HomePanel.CloudDrive.CloudDriveContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Master.Views.HomePanel.CloudDrive"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- d:DesignHeight="450"
- d:DesignWidth="800"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d">
- <Grid Margin="44,38,0,0">
- <Grid.RowDefinitions>
- <RowDefinition Height="auto" />
- <RowDefinition />
- </Grid.RowDefinitions>
- <Grid>
- <TextBlock HorizontalAlignment="Left" Text="Cloud Drive" />
- <ComboBox
- x:Name="combCloudDrive"
- Width="115"
- Height="32"
- HorizontalAlignment="Right"
- Background="Wheat"
- SelectionChanged="combCloudDrive_SelectionChanged">
- <ComboBox.ItemTemplate>
- <DataTemplate>
- <Border Background="#DBDBDB">
- <TextBlock Text="{Binding DriveName}" />
- </Border>
- </DataTemplate>
- </ComboBox.ItemTemplate>
- </ComboBox>
- </Grid>
- <ListBox
- x:Name="ListCloudDrive"
- Grid.Row="1"
- Grid.RowSpan="2"
- HorizontalAlignment="Left"
- VerticalAlignment="Top"
- Background="Transparent"
- BorderThickness="0">
- <ListBox.ItemsPanel>
- <ItemsPanelTemplate>
- <UniformGrid Columns="4" />
- </ItemsPanelTemplate>
- </ListBox.ItemsPanel>
- <ListBox.ItemTemplate>
- <DataTemplate>
- <StackPanel Width="218" Height="192">
- <Rectangle
- Width="218"
- Height="172"
- Fill="#DBDBDB" />
- <TextBlock
- Grid.Row="1"
- HorizontalAlignment="Center"
- VerticalAlignment="Bottom"
- Text="{Binding DriveName}" />
- </StackPanel>
- </DataTemplate>
- </ListBox.ItemTemplate>
- <ListBox.ItemContainerStyle>
- <Style TargetType="{x:Type ListBoxItem}">
- <Setter Property="Margin" Value="0,0,8,0" />
- <Setter Property="Width" Value="218" />
- <Setter Property="Height" Value="192" />
- <Setter Property="Padding" Value="0" />
- <EventSetter Event="PreviewMouseLeftButtonUp" Handler="SelectCloudDrive_Click" />
- </Style>
- </ListBox.ItemContainerStyle>
- </ListBox>
- </Grid>
- </UserControl>
|