You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.9 KiB
33 lines
1.9 KiB
<Window x:Class="SiaSun.LMS.WPFClient.TASK.StationUnlock"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:uc="clr-namespace:SiaSun.LMS.WPFClient.UC"
|
|
Title="站台解锁" Height="500" Width="400" WindowStyle="None" WindowStartupLocation="CenterScreen" Loaded="Window_Loaded" SizeToContent="Height">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<uc:ucWindowTopHeader Grid.Row="0"></uc:ucWindowTopHeader>
|
|
<Border Grid.Row="1" CornerRadius="0" BorderThickness="0">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="40"></RowDefinition>
|
|
<RowDefinition Height="40"></RowDefinition>
|
|
<RowDefinition Height="40"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<CheckBox Name="cbOne" Tag="12001" Grid.Row="0" Content="12001出站台" VerticalAlignment="Center" Margin="5" IsChecked="False"></CheckBox>
|
|
<CheckBox Name="cbFour" Tag="12004" Grid.Row="1" Content="12004出站台" VerticalAlignment="Center" Margin="5" IsChecked="False"></CheckBox>
|
|
<CheckBox Name="cbSix" Tag="12006" Grid.Row="2" Content="12006出站台" VerticalAlignment="Center" Margin="5" IsChecked="False"></CheckBox>
|
|
</Grid>
|
|
</Border>
|
|
|
|
<Border Grid.Row="2" CornerRadius="0" BorderThickness="2">
|
|
<WrapPanel HorizontalAlignment="Center" ButtonBase.Click="WrapPanel_Click">
|
|
<Button Name="btnOK" Width="70" Margin="5">解锁站台</Button>
|
|
</WrapPanel>
|
|
</Border>
|
|
|
|
</Grid>
|
|
</Window>
|