12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <UserControl
- x:Class="PDF_Master.Views.HomePanel.PDFTools.PDFToolExpendItem"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:convert="clr-namespace:PDF_Master.DataConvert"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Master.Views.HomePanel.PDFTools"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- d:DesignHeight="450"
- d:DesignWidth="800"
- mc:Ignorable="d">
- <UserControl.Resources />
- <Border
- x:Name="BorderExtend"
- Height="116"
- Background="Transparent">
- <Grid Margin="16 16 16 0">
- <Grid.RowDefinitions>
- <RowDefinition Height="36" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <StackPanel Orientation="Horizontal">
- <Image
- Width="36"
- Height="36"
- HorizontalAlignment="Center"
- RenderOptions.BitmapScalingMode="HighQuality"
- Source="{Binding FnImg}"
- UseLayoutRounding="True" />
- <TextBlock
- Name="TxbTitle"
- Margin="8,0,0,0"
- VerticalAlignment="Center"
- FontFamily="Segoe UI"
- FontSize="14"
- FontWeight="SemiBold"
- Foreground="Black"
- Text="{Binding FnName}" />
- </StackPanel>
- <TextBlock
- Name="ToolInfoBlock"
- Grid.Row="1"
- Margin="0,8,0,2"
- VerticalAlignment="Center"
- FontSize="12"
- Foreground="#666666"
- LineHeight="16"
- Text="{Binding FnInfo}"
- TextWrapping="Wrap" />
- </Grid>
- </Border>
- </UserControl>
|