36 lines
2.0 KiB
XML
36 lines
2.0 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="AutoCat.Views.PlateView"
|
|
SizeChanged="UserControl_SizeChanged">
|
|
|
|
<Grid>
|
|
<Rectangle RadiusX="6" RadiusY="6" Fill="#ccc"/>
|
|
<Grid ColumnDefinitions="73*,27*">
|
|
|
|
<Grid>
|
|
<Rectangle Grid.Column="0" RadiusX="4" RadiusY="4" VerticalAlignment="Stretch" Fill="#333" Margin="2"/>
|
|
<TextBlock x:Name="NumberBox" Text="A123AA" VerticalAlignment="Center" HorizontalAlignment="Center" Foreground="#ccc"
|
|
FontFamily="{StaticResource RoadNumbersFont}" FontSize="{Binding Height}"/>
|
|
</Grid>
|
|
|
|
<Rectangle Grid.Column="1" RadiusX="4" RadiusY="4" VerticalAlignment="Stretch" Fill="#333" Margin="0,2,2,2"/>
|
|
<Grid Grid.Column="1" Margin="0,2,2,2" RowDefinitions="65*,35*">
|
|
<TextBlock Grid.Row="0" x:Name="RegionBox" VerticalAlignment="Center" HorizontalAlignment="Center"
|
|
Foreground="#ccc" FontFamily="{StaticResource RoadNumbersFont}"/>
|
|
<Grid Grid.Row="1" Margin="3,1" x:Name="CountryRow" ColumnDefinitions="*,Auto">
|
|
<TextBlock Grid.Column="0" x:Name="CountryName" Text="RUS" VerticalAlignment="Center" TextAlignment="Center"/>
|
|
<Grid Grid.Column="1" x:Name="FlagGrid" Margin="1" RowDefinitions="*,*,*">
|
|
<Rectangle Grid.Row="0" Fill="White"/>
|
|
<Rectangle Grid.Row="1" Fill="Blue"/>
|
|
<Rectangle Grid.Row="2" Fill="Red"/>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
</UserControl>
|