23 lines
912 B
XML
23 lines
912 B
XML
<Window x:Class="MetroGauges.Window2"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
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"
|
|
xmlns:local="clr-namespace:MetroGauges"
|
|
mc:Ignorable="d"
|
|
Title="Window2" Height="450" Width="800">
|
|
<Grid>
|
|
<CheckBox Content="CheckBox" HorizontalAlignment="Left" Margin="221,176,0,0" VerticalAlignment="Top"/>
|
|
<RadioButton
|
|
x:Name="rbA1"
|
|
HorizontalAlignment="Left"
|
|
|
|
Content="A型车"
|
|
IsChecked="True" Margin="173,237,0,165" />
|
|
|
|
|
|
<RadioButton Content="RadioButton" IsChecked="True" HorizontalAlignment="Left" Margin="335,353,0,0" VerticalAlignment="Top"/>
|
|
|
|
</Grid>
|
|
</Window>
|