12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <UserControl
- x:Class="PDF_Master.Views.HomePanel.PDFTools.PDFToolItem"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:convert="clr-namespace:PDF_Master.DataConvert"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Master.Views.HomePanel"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- d:DesignHeight="450"
- d:DesignWidth="800"
- mc:Ignorable="d">
- <Border
- x:Name="BorderConcise"
- Height="68"
- Background="Transparent"
- CornerRadius="{StaticResource border-radius.8}">
- <Grid Margin="16" Background="Transparent">
- <Grid
- x:Name="GridToolMaskConcise"
- Grid.ColumnSpan="2"
- Background="#477EDE"
- Visibility="Collapsed" />
- <StackPanel VerticalAlignment="Center" Orientation="Horizontal">
- <Image
- Width="36"
- Height="36"
- HorizontalAlignment="Center"
- VerticalAlignment="Top"
- RenderOptions.BitmapScalingMode="HighQuality"
- Source="{Binding FnImg}"
- UseLayoutRounding="True" />
- <TextBlock
- Name="TxbTitleConcise"
- Margin="8,0,0,0"
- VerticalAlignment="Center"
- FontFamily="Segoe UI"
- FontSize="14"
- FontWeight="SemiBold"
- Text="{Binding FnName}" />
- </StackPanel>
- </Grid>
- </Border>
- </UserControl>
|