1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <UserControl
- x:Class="PDF_Office.Views.HomePanel.RecentFiles.DocItemControl"
- 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_Office.Views.HomePanel"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- d:DesignHeight="450"
- d:DesignWidth="800"
- mc:Ignorable="d">
- <Grid
- Width="226"
- Height="248"
- DataContext="{Binding}"
- Loaded="Grid_Loaded"
- ToolTip="{Binding FilePath}">
- <Grid.RowDefinitions>
- <RowDefinition Height="auto" />
- <RowDefinition />
- </Grid.RowDefinitions>
- <Border
- Margin="51,16"
- BorderBrush="{StaticResource color.sys.layout.divider}"
- BorderThickness="1"
- CornerRadius="{StaticResource border-radius.8}">
- <Grid>
- <Border
- Name="BorderImage"
- Height="164"
- Background="White"
- CornerRadius="{StaticResource border-radius.8}" />
- <Image
- Name="CoverImage"
- RenderOptions.BitmapScalingMode="HighQuality"
- UseLayoutRounding="True">
- <Image.OpacityMask>
- <VisualBrush Visual="{Binding ElementName=BorderImage}" />
- </Image.OpacityMask>
- </Image>
- </Grid>
- </Border>
- <TextBlock
- Grid.Row="1"
- MaxWidth="226"
- MaxHeight="44"
- Margin="0,0,0,8"
- HorizontalAlignment="Center"
- VerticalAlignment="Top"
- FontSize="14"
- Text="{Binding FileName}"
- TextTrimming="CharacterEllipsis"
- TextWrapping="Wrap"
- ToolTip="{Binding FileName}" />
- </Grid>
- </UserControl>
|