20 lines
872 B
20 lines
872 B
1 year ago
|
<ad:DocumentContent x:Class="SSWMS.Client.WAREHOUSE_CELL_STATUS"
|
||
|
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"
|
||
|
xmlns:ad="clr-namespace:AvalonDock;assembly=AvalonDock"
|
||
|
Title="WAREHOUSE_CELL_STATUS">
|
||
|
<Grid>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="*"></RowDefinition>
|
||
|
<RowDefinition Height="Auto"></RowDefinition>
|
||
|
<RowDefinition Height="2*"></RowDefinition>
|
||
|
</Grid.RowDefinitions>
|
||
|
<GroupBox Grid.Row="0" Header="库存物料">
|
||
|
<uc:ucCommonDataGrid x:Name="ucGridStorage"></uc:ucCommonDataGrid>
|
||
|
</GroupBox>
|
||
|
<GridSplitter Grid.Row="1" HorizontalAlignment="Stretch" Height="2"></GridSplitter>
|
||
|
<uc:ucStoreCell x:Name="ucCellQuery" Grid.Row="2"></uc:ucStoreCell>
|
||
|
</Grid>
|
||
|
</ad:DocumentContent>
|