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.
35 lines
1.7 KiB
35 lines
1.7 KiB
<Window x:Class="SSWMS.Client.PLAN_OUT_AUTO"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:uc="clr-namespace:SSWMS.Client.UC"
|
|
Title="自动出库" WindowStartupLocation="CenterScreen"
|
|
WindowStyle="None" Height="500" Width="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<uc:ucWindowTopHeader U_Title="出库配置" Grid.Row="0"></uc:ucWindowTopHeader>
|
|
<StackPanel Grid.Row="1" Orientation="Horizontal" Margin="20, 20, 20, 0">
|
|
<Border BorderThickness="1" BorderBrush="Silver">
|
|
<StackPanel Width="700">
|
|
<Label Content="出库站台" HorizontalContentAlignment="Center" Margin="10" />
|
|
<WrapPanel x:Name="wpStation" Orientation="Vertical" Height="300" />
|
|
</StackPanel>
|
|
</Border>
|
|
</StackPanel>
|
|
<StackPanel Grid.Row="2" Orientation="Horizontal" Margin="20, 0, 20, 20">
|
|
<Border BorderThickness="1, 0, 1, 1" BorderBrush="Silver">
|
|
<StackPanel Orientation="Horizontal" Width="700">
|
|
<Label Content="出库优先级" HorizontalContentAlignment="Center" Margin="10" />
|
|
<TextBox x:Name="tbLevel" Width="100"/>
|
|
</StackPanel>
|
|
</Border>
|
|
</StackPanel>
|
|
<StackPanel Grid.Row="3" Style="{StaticResource CommonStackPanel}" Margin="20, 10, 20, 20">
|
|
<Button Content="自动出库" Style="{StaticResource CommonButton}" Click="bSave_Click"></Button>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|