71 lines
2.5 KiB
XML
71 lines
2.5 KiB
XML
<Window
|
|
x:Class="RookieStation.PackAreaModule.View.WpfExitGate"
|
|
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:local="clr-namespace:RookieStation"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Width="0"
|
|
Height="74"
|
|
MinWidth="260"
|
|
MinHeight="180"
|
|
ShowInTaskbar="False"
|
|
mc:Ignorable="d">
|
|
<Window.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/SkinDefault.xaml" />
|
|
<ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/Theme.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Window.Resources>
|
|
<Grid Margin="10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1.5*" />
|
|
<RowDefinition Height="0.5*" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<GroupBox Margin="2" Header="设置">
|
|
<StackPanel>
|
|
<RadioButton
|
|
x:Name="rbStartPassage"
|
|
Grid.Row="0"
|
|
Grid.Column="0"
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Center"
|
|
Content="起始为通道"
|
|
GroupName="Arrangement"
|
|
IsChecked="True" />
|
|
<RadioButton
|
|
x:Name="rbStartInspection"
|
|
Grid.Row="1"
|
|
Grid.Column="0"
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Center"
|
|
Content="起始为收检台"
|
|
GroupName="Arrangement" />
|
|
</StackPanel>
|
|
</GroupBox>
|
|
<GroupBox
|
|
Grid.Row="0"
|
|
Grid.Column="1"
|
|
Margin="2"
|
|
Header="通道宽度(mm)">
|
|
<TextBox
|
|
x:Name="tbPassagewidth"
|
|
PreviewTextInput="tb_PreviewTextInput"
|
|
Text="600"
|
|
TextAlignment="Center" />
|
|
</GroupBox>
|
|
|
|
<Button
|
|
x:Name="btnPlace"
|
|
Grid.Row="2"
|
|
Grid.Column="1"
|
|
Click="btnConfirm_Click"
|
|
Content="布置" />
|
|
</Grid>
|
|
</Window> |