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.
21 lines
941 B
21 lines
941 B
<ad:DocumentContent x:Class="SSWMS.Client.MANAGE_OUT_STATION"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:ad="clr-namespace:AvalonDock;assembly=AvalonDock"
|
|
xmlns:uc="clr-namespace:SSWMS.Client.UC">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<GroupBox Grid.Row="0" Header="库存信息">
|
|
<uc:ucQueryDataGrid x:Name="ucStorage"/>
|
|
</GroupBox>
|
|
<WrapPanel Grid.Row="1" Style="{StaticResource CommonWrapPanel}">
|
|
<StackPanel Style="{StaticResource CommonStackPanel}">
|
|
<Button Content="暂存出库" Style="{StaticResource CommonButton}" Click="bOutStation_Click"/>
|
|
<Button Content="重 置" Style="{StaticResource CommonButton}" Click="bRefresh_Click"/>
|
|
</StackPanel>
|
|
</WrapPanel>
|
|
</Grid>
|
|
</ad:DocumentContent>
|