33 lines
1.6 KiB
Plaintext
33 lines
1.6 KiB
Plaintext
|
|
<UserControl x:Class="EngineeringSync.Setup.Views.Pages.OptionCard"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
Margin="0,0,0,8">
|
||
|
|
<Border x:Name="CardBorder" Background="White" BorderThickness="1"
|
||
|
|
BorderBrush="#E0E0E0" CornerRadius="8" Padding="16,12"
|
||
|
|
Cursor="Hand" MouseLeftButtonDown="Card_Click">
|
||
|
|
<Grid>
|
||
|
|
<Grid.ColumnDefinitions>
|
||
|
|
<ColumnDefinition Width="40"/>
|
||
|
|
<ColumnDefinition Width="*"/>
|
||
|
|
<ColumnDefinition Width="Auto"/>
|
||
|
|
</Grid.ColumnDefinitions>
|
||
|
|
|
||
|
|
<Border Grid.Column="0" Width="32" Height="32" CornerRadius="8" Background="#F0F7FF">
|
||
|
|
<TextBlock x:Name="IconText" FontFamily="Segoe MDL2 Assets" FontSize="15"
|
||
|
|
Foreground="#0078D4" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||
|
|
</Border>
|
||
|
|
|
||
|
|
<StackPanel Grid.Column="1" VerticalAlignment="Center" Margin="12,0">
|
||
|
|
<TextBlock x:Name="TitleText" FontFamily="Segoe UI" FontSize="13"
|
||
|
|
FontWeight="SemiBold" Foreground="#1A1A1A"/>
|
||
|
|
<TextBlock x:Name="DescText" FontFamily="Segoe UI" FontSize="11"
|
||
|
|
Foreground="#5F5F5F" TextWrapping="Wrap"/>
|
||
|
|
</StackPanel>
|
||
|
|
|
||
|
|
<CheckBox x:Name="ToggleBox" Grid.Column="2"
|
||
|
|
Style="{StaticResource ModernCheckBoxStyle}"
|
||
|
|
VerticalAlignment="Center" IsHitTestVisible="False"/>
|
||
|
|
</Grid>
|
||
|
|
</Border>
|
||
|
|
</UserControl>
|