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.
15 lines
668 B
15 lines
668 B
<Window x:Class="SSWMS.Client.WAREHOUSE_CELL_SELECT"
|
|
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="WAREHOUSE_CELL_SELECT" WindowStartupLocation="CenterScreen"
|
|
WindowStyle="None">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<uc:ucWindowTopHeader U_Title="货位信息" Grid.Row="0"></uc:ucWindowTopHeader>
|
|
<uc:ucStoreCell x:Name="ucCell" Margin="1,1,1,0" Grid.Row="1"></uc:ucStoreCell>
|
|
</Grid>
|
|
</Window>
|