PDFToolExpendItem.xaml 1.9 KB

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