1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <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">
- <Grid.RowDefinitions>
- <RowDefinition Height="36" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <StackPanel Orientation="Horizontal">
- <Image
- Width="28"
- Height="28"
- HorizontalAlignment="Center"
- Source="{Binding FnImg}" />
- <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,0"
- VerticalAlignment="Center"
- FontSize="12"
- Foreground="#666666"
- LineHeight="16"
- Text="{Binding FnInfo}"
- TextWrapping="Wrap" />
- </Grid>
- </Border>
- </UserControl>
|