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.
46 lines
2.9 KiB
46 lines
2.9 KiB
<UserControl x:Class="SiaSun.LMS.WPFClient.UC.ucStockIn"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
mc:Ignorable="d" xmlns:dxr="http://schemas.devexpress.com/winfx/2008/xaml/ribbon" d:DesignHeight="250" d:DesignWidth="300">
|
|
<Border BorderThickness="3">
|
|
<Grid >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
<WrapPanel Grid.Row="0" Keyboard.KeyDown="WrapPanel_KeyDown" Margin="0,0,0,0">
|
|
<StackPanel Name="panelSingleStockType" Orientation="Horizontal" Margin="5,2,5,2">
|
|
<TextBlock MinWidth="70" VerticalAlignment="Center">容器类型:</TextBlock>
|
|
<ComboBox Name="cmbStockType" Margin="2,0,2,0" MinWidth="120" MinHeight="23"></ComboBox>
|
|
</StackPanel>
|
|
|
|
<StackPanel Name="panelStockInType" Orientation="Horizontal" Margin="5,2,5,2">
|
|
<TextBlock MinWidth="70" VerticalAlignment="Center">入库方式:</TextBlock>
|
|
<WrapPanel>
|
|
<RadioButton Name="rbSingle" Margin="2,0,2,0" Content="单容器" Checked="rbSingle_Checked" IsChecked="False" IsEnabled="True"></RadioButton>
|
|
<RadioButton Name="rbSingleContinue" Margin="2,0,2,0" Content="单容器连续" Checked="rbSingle_Checked" ></RadioButton>
|
|
<RadioButton Name="rbMultiple" Margin="2,0,2,0" Content="托盘组" Checked="rbSingle_Checked" Visibility="Visible" IsEnabled="True"></RadioButton>
|
|
</WrapPanel>
|
|
</StackPanel>
|
|
|
|
<StackPanel Name="panelBeingStockBarCode" Orientation="Horizontal" Margin="5,2,5,2">
|
|
<TextBlock MinWidth="70" VerticalAlignment="Center">起始条码:</TextBlock>
|
|
<TextBox Name="txtBeginStockBarCode" Margin="2,0,2,0" MinWidth="120" MinHeight="23" ></TextBox>
|
|
</StackPanel>
|
|
<StackPanel Name="panelEndStockBarCode" Orientation="Horizontal" Margin="5,2,5,2">
|
|
<TextBlock MinWidth="70" VerticalAlignment="Center">终止条码:</TextBlock>
|
|
<TextBox Name="txtEndStockBarCode" Margin="2,0,2,0" MinWidth="120" MinHeight="23" ></TextBox>
|
|
</StackPanel>
|
|
|
|
</WrapPanel>
|
|
<Grid Grid.Row="1">
|
|
<ListView Name="lvStockBarcode" MinHeight="100" MaxHeight="100" ></ListView>
|
|
</Grid>
|
|
|
|
</Grid>
|
|
</Border>
|
|
</UserControl>
|