12345678910111213141516171819202122232425262728 |
- <UserControl x:Class="Compdfkit_Tools.PDFControl.RecentFilesControl"
- 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:Compdfkit_Tools.PDFControl"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800" Background="AliceBlue">
- <UserControl.Resources>
- <Style TargetType="ListBox" x:Key="HistoryListBoxStyle">
- <Setter Property="BorderThickness" Value="0" />
- <Setter Property="BorderBrush" Value="Transparent" />
- <Setter Property="Padding" Value="0" />
- </Style>
- </UserControl.Resources>
- <Grid>
- <ListBox x:Name="HistoryListBox" Style="{StaticResource HistoryListBoxStyle}" ItemsSource="{Binding History}" d:ItemsSource="{d:SampleData ItemCount=10}" SelectionMode="Single">
- <ListBox.ItemTemplate>
- <DataTemplate>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding FilePath}" Margin="0,0,20,0"/>
- <TextBlock Text="{Binding FileSize}" />
- </StackPanel>
- </DataTemplate>
- </ListBox.ItemTemplate>
- </ListBox>
- </Grid>
- </UserControl>
|