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.
29 lines
1.8 KiB
29 lines
1.8 KiB
<ad:DocumentContent x:Class="SiaSun.LMS.WPFClient.TASK.ManageBindIn_Plan"
|
|
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="ManageBindIn_Plan" Height="353" Width="620" Loaded="DocumentContent_Loaded">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<uc:ucSplitPropertyGridTab x:Name="gridPlanList"></uc:ucSplitPropertyGridTab>
|
|
<WrapPanel Grid.Row="1" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,3,0,2" 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>
|
|
<Button Name="btnIN" Width="70" Margin="5">直接入库</Button>
|
|
<uc:ucManagePosition x:Name="ucManagePosition" Margin="5"></uc:ucManagePosition>
|
|
<Button Name="btnBindIn" Width="70" Margin="5">配盘入库</Button>
|
|
<Button Name="btnRefresh" Width="70" Margin="5">刷新</Button>
|
|
</WrapPanel>
|
|
<uc:ucSplitPropertyGridTab x:Name="gridBindList" Grid.Row="1" Margin="0,40,0,0"></uc:ucSplitPropertyGridTab>
|
|
<GridSplitter Height="2" HorizontalAlignment="Stretch" Grid.Row="1" VerticalAlignment="Top" Margin="0,0,0,1"></GridSplitter>
|
|
</Grid>
|
|
|
|
</ad:DocumentContent >
|