18 lines
998 B
Plaintext
18 lines
998 B
Plaintext
|
|
<UserControl x:Class="EngineeringSync.Setup.Views.Pages.FeatureRow"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
Margin="0,0,0,12">
|
||
|
|
<StackPanel Orientation="Horizontal">
|
||
|
|
<Border Width="36" Height="36" CornerRadius="8" Background="#F0F7FF" Margin="0,0,12,0">
|
||
|
|
<TextBlock x:Name="IconText" FontFamily="Segoe MDL2 Assets" FontSize="16"
|
||
|
|
Foreground="#0078D4" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||
|
|
</Border>
|
||
|
|
<StackPanel VerticalAlignment="Center">
|
||
|
|
<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" MaxWidth="420"/>
|
||
|
|
</StackPanel>
|
||
|
|
</StackPanel>
|
||
|
|
</UserControl>
|