PDFToolExpendItem.xaml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <UserControl
  2. x:Class="PDF_Master.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_Master.DataConvert"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:local="clr-namespace:PDF_Master.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. FontFamily="Segoe UI"
  33. FontSize="14"
  34. FontWeight="SemiBold"
  35. Foreground="Black"
  36. Text="{Binding FnName}" />
  37. </StackPanel>
  38. <TextBlock
  39. Name="ToolInfoBlock"
  40. Grid.Row="1"
  41. Margin="0,8,0,0"
  42. VerticalAlignment="Center"
  43. FontSize="12"
  44. Foreground="#666666"
  45. LineHeight="16"
  46. Text="{Binding FnInfo}"
  47. TextWrapping="Wrap" />
  48. </Grid>
  49. </Border>
  50. </UserControl>