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.
32 lines
1.9 KiB
32 lines
1.9 KiB
<ad:DocumentContent x:Class="SiaSun.LMS.WPFClient.TASK.ManageMerge"
|
|
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:SiaSun.LMS.WPFClient.UC"
|
|
Title="ManageMerge" Height="353" Width="620" Loaded="DocumentContent_Loaded">
|
|
|
|
|
|
<Grid Grid.Column="2">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*" ></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<uc:ucManageInInput x:Name="ucManageIn" Grid.Row="0" ></uc:ucManageInInput>
|
|
<GridSplitter Height="2" HorizontalAlignment="Stretch" Grid.Row="1"></GridSplitter>
|
|
<GroupBox Name="grpbManageList" Grid.Row="2" Header="组盘清单" Margin="1">
|
|
<uc:ucSplitPropertyGridTab x:Name="gridManageList"></uc:ucSplitPropertyGridTab>
|
|
</GroupBox>
|
|
<WrapPanel Grid.Row="3" HorizontalAlignment="Left" VerticalAlignment="Center" ButtonBase.Click="Button_Click">
|
|
<TextBlock Text="配盘库区" FontSize="12" VerticalAlignment="Center" Margin="5,0"></TextBlock>
|
|
<ComboBox Name="cbbAREA" Width="80" Height="25" SelectionChanged="cbbAREA_SelectionChanged"></ComboBox>
|
|
<TextBlock Text="配盘地点" FontSize="12" VerticalAlignment="Center" Margin="5,0"></TextBlock>
|
|
<ComboBox Name="cbbCELL" Width="80" Height="25"></ComboBox>
|
|
<uc:ucManagePosition x:Name="ucManagePosition" Margin="5,0" ></uc:ucManagePosition>
|
|
<Button Name="btnSave" Width="70" Margin="5">保存</Button>
|
|
<Button Name="btnRefresh" Width="70" Margin="5">刷新</Button>
|
|
</WrapPanel>
|
|
</Grid>
|
|
|
|
</ad:DocumentContent >
|