19 lines
889 B
Plaintext
19 lines
889 B
Plaintext
|
|
<UserControl x:Class="EngineeringSync.Setup.Views.Pages.SummaryBoolRow"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
Margin="0,2">
|
||
|
|
<Grid>
|
||
|
|
<Grid.ColumnDefinitions>
|
||
|
|
<ColumnDefinition Width="140"/>
|
||
|
|
<ColumnDefinition Width="*"/>
|
||
|
|
</Grid.ColumnDefinitions>
|
||
|
|
<TextBlock x:Name="LabelText" Grid.Column="0"
|
||
|
|
FontFamily="Segoe UI" FontSize="12" Foreground="#5F5F5F"/>
|
||
|
|
<StackPanel Grid.Column="1" Orientation="Horizontal">
|
||
|
|
<TextBlock x:Name="CheckIcon" FontFamily="Segoe MDL2 Assets" FontSize="11"
|
||
|
|
Margin="0,0,6,0" VerticalAlignment="Center"/>
|
||
|
|
<TextBlock x:Name="ValueText" FontFamily="Segoe UI" FontSize="12"/>
|
||
|
|
</StackPanel>
|
||
|
|
</Grid>
|
||
|
|
</UserControl>
|