12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <UserControl x:Class="PDF_Office.Views.HomePanel.PDFTools.PDFToolExpendItem"
- 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:PDF_Office.Views.HomePanel.PDFTools"
- xmlns:convert="clr-namespace:PDF_Office.DataConvert"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <UserControl.Resources>
- </UserControl.Resources>
- <Grid Margin="1,1,1,1" Background="White">
- <Border x:Name="BorderExtend" Height="108" Background="White">
- <Grid>
- <Grid Margin="10">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto"></ColumnDefinition>
- <ColumnDefinition Width="*"></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"></RowDefinition>
- <RowDefinition Height="*"></RowDefinition>
- </Grid.RowDefinitions>
- <Image VerticalAlignment="Top" Source="{Binding FnImg}" HorizontalAlignment="Center" Width="28" Height="28" Margin="5,10,5,5" />
- <TextBlock Name="TxbTitle" Grid.Column="1" Text="{Binding FnName}"
- FontSize="14" FontWeight="SemiBold" Foreground="Black"
- VerticalAlignment="Top" Margin="0,15,0,0"></TextBlock>
- <StackPanel Grid.Column="0" Grid.ColumnSpan="2" Grid.Row="1" Margin="6,0,6,0">
- <Grid>
- <TextBlock Name="ToolInfoBlock" Text="{Binding FnInfo}"
- Foreground="#666666" LineHeight="16" FontSize="12" TextWrapping="Wrap" VerticalAlignment="Center" Margin="0,8,0,0"></TextBlock>
- </Grid>
- </StackPanel>
- </Grid>
- </Grid>
- </Border>
- </Grid>
- </UserControl>
|