宜昌华友成品库管理软件
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.

38 lines
2.0 KiB

<Window x:Class="SiaSun.LMS.WPFClient.Dialog.SYSMode"
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="AGV模式设置" Height="254" Width="323" WindowStyle="None" WindowStartupLocation="CenterScreen" Loaded="Window_Loaded">
<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.ColumnDefinitions>
<ColumnDefinition Width="50"></ColumnDefinition>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Image Grid.Column="0" Source="/@Images/样式.png"></Image>
<GroupBox Grid.Column="1" Name="gbWorkMode" Header="AGV模式设置" Margin="5">
<WrapPanel Name="wpWorkMode" HorizontalAlignment="Left" Grid.Column="1" Margin="5" Width="200" Height="114">
<RadioButton Content="AGV" Width="200" Margin="10" Height="16" Name="rbtAuto" Tag="1" />
<RadioButton Content="人工" Width="200" Margin="10" Height="16" Name="rbtManual" Tag="0" />
</WrapPanel>
</GroupBox>
</Grid>
</Border>
<Border Grid.Row="2" CornerRadius="0" BorderThickness="0">
<WrapPanel HorizontalAlignment="Center" ButtonBase.Click="WrapPanel_Click">
<Button Name="btnOK" Width="70" Margin="5" Tag="WorkMode">确定</Button>
<Button Name="btnCancel" Width="70" Margin="5">取消</Button>
</WrapPanel>
</Border>
</Grid>
</Window>