22 lines
927 B
XML
22 lines
927 B
XML
<UserControl
|
|
x:Class="AutoCat.Controls.TextCell"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:AutoCat.Controls"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="80"
|
|
d:DesignWidth="500">
|
|
|
|
<Grid ColumnSpacing="8">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<TextBlock x:Name="TitleBox" Grid.Column="0" Text="Name" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="18"/>
|
|
<TextBlock x:Name="ValueBox" Grid.Column="1" Text="Value" HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="18" Foreground="{StaticResource SystemBaseMediumColor}"/>
|
|
</Grid>
|
|
</UserControl>
|