PDFToolItem.xaml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <UserControl
  2. x:Class="PDF_Master.Views.HomePanel.PDFTools.PDFToolItem"
  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"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. d:DesignHeight="450"
  10. d:DesignWidth="800"
  11. mc:Ignorable="d">
  12. <Border
  13. x:Name="BorderConcise"
  14. Height="64"
  15. Background="Transparent"
  16. CornerRadius="{StaticResource border-radius.8}">
  17. <Grid Margin="16" Background="Transparent">
  18. <Grid
  19. x:Name="GridToolMaskConcise"
  20. Grid.ColumnSpan="2"
  21. Background="#477EDE"
  22. Visibility="Collapsed" />
  23. <StackPanel VerticalAlignment="Center" Orientation="Horizontal">
  24. <Image
  25. Width="28"
  26. Height="28"
  27. HorizontalAlignment="Center"
  28. VerticalAlignment="Top"
  29. Source="{Binding FnImg}" />
  30. <TextBlock
  31. Name="TxbTitleConcise"
  32. Margin="8,0,0,0"
  33. VerticalAlignment="Center"
  34. FontFamily="Segoe UI"
  35. FontSize="14"
  36. FontWeight="SemiBold"
  37. Text="{Binding FnName}" />
  38. </StackPanel>
  39. </Grid>
  40. </Border>
  41. </UserControl>