PDFToolItem.xaml 1.5 KB

123456789101112131415161718192021222324252627
  1. <UserControl x:Class="PDF_Office.Views.HomePanel.PDFTools.PDFToolItem"
  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"
  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="BorderConcise" Height="64"
  14. >
  15. <Grid Background="Transparent">
  16. <Grid.ColumnDefinitions>
  17. <ColumnDefinition Width="auto"/>
  18. <ColumnDefinition Width="*"/>
  19. </Grid.ColumnDefinitions>
  20. <Grid x:Name="GridToolMaskConcise" Grid.ColumnSpan="2" Background="#477EDE" Visibility="Collapsed"/>
  21. <Image VerticalAlignment="Top" Source="{Binding FnImg}" HorizontalAlignment="Center" Width="28" Height="28" Margin="5,10,5,5" />
  22. <TextBlock Name="TxbTitleConcise" Grid.Column="1" Text="{Binding FnName}" FontSize="14" FontWeight="SemiBold" VerticalAlignment="Top" Margin="0,15,0,0"></TextBlock>
  23. </Grid>
  24. </Border>
  25. </Grid>
  26. </UserControl>