17 lines
736 B
Plaintext
17 lines
736 B
Plaintext
|
|
<UserControl x:Class="EngineeringSync.Setup.Views.Pages.SummaryRow"
|
||
|
|
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"/>
|
||
|
|
<TextBlock x:Name="ValueText" Grid.Column="1"
|
||
|
|
FontFamily="Segoe UI" FontSize="12" Foreground="#1A1A1A"
|
||
|
|
TextWrapping="Wrap"/>
|
||
|
|
</Grid>
|
||
|
|
</UserControl>
|