PDFToolExpendItem.xaml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <UserControl x:Class="PDF_Office.Views.HomePanel.PDFTools.PDFToolExpendItem"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PDF_Office.Views.HomePanel.PDFTools"
  7. xmlns:convert="clr-namespace:PDF_Office.DataConvert"
  8. mc:Ignorable="d"
  9. d:DesignHeight="450" d:DesignWidth="800">
  10. <UserControl.Resources>
  11. </UserControl.Resources>
  12. <Grid Margin="1,1,1,1" Background="White">
  13. <Border x:Name="BorderExtend" Height="108" Background="White">
  14. <Grid>
  15. <Grid Margin="10">
  16. <Grid.ColumnDefinitions>
  17. <ColumnDefinition Width="auto"></ColumnDefinition>
  18. <ColumnDefinition Width="*"></ColumnDefinition>
  19. </Grid.ColumnDefinitions>
  20. <Grid.RowDefinitions>
  21. <RowDefinition Height="auto"></RowDefinition>
  22. <RowDefinition Height="*"></RowDefinition>
  23. </Grid.RowDefinitions>
  24. <Image VerticalAlignment="Top" Source="{Binding FnImg}" HorizontalAlignment="Center" Width="28" Height="28" Margin="5,10,5,5" />
  25. <TextBlock Name="TxbTitle" Grid.Column="1" Text="{Binding FnName}"
  26. FontSize="14" FontWeight="SemiBold" Foreground="Black"
  27. VerticalAlignment="Top" Margin="0,15,0,0"></TextBlock>
  28. <StackPanel Grid.Column="0" Grid.ColumnSpan="2" Grid.Row="1" Margin="6,0,6,0">
  29. <Grid>
  30. <TextBlock Name="ToolInfoBlock" Text="{Binding FnInfo}"
  31. Foreground="#666666" LineHeight="16" FontSize="12" TextWrapping="Wrap" VerticalAlignment="Center" Margin="0,8,0,0"></TextBlock>
  32. </Grid>
  33. </StackPanel>
  34. </Grid>
  35. </Grid>
  36. </Border>
  37. </Grid>
  38. </UserControl>