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.8 KiB
32 lines
1.8 KiB
<UserControl x:Class="SSWMS.Client.UC.ucGoodsMain"
|
|
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"
|
|
d:DesignHeight="160" d:DesignWidth="700">
|
|
<Grid Height="120" >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
<StackPanel Name="panelGoodsMainSelect" Orientation="Horizontal" MinWidth="450" VerticalAlignment="Center" Grid.Row="0">
|
|
<TextBlock MinWidth="150" FontSize="20" > 选择物料:</TextBlock>
|
|
<ComboBox Name="cmbGoodsMainSelect" Margin="2,0,2,0" MinWidth="900" FontSize="22" SelectionChanged="cmbGoodsMainSelect_SelectionChanged"></ComboBox>
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel Name="panelGoods" Orientation="Horizontal" MinWidth="450" Grid.Row="1" VerticalAlignment="Center">
|
|
<TextBlock MinWidth="150" FontSize="20"> 当前物料:</TextBlock>
|
|
<TextBlock Name="textGoodsInfo" MinWidth="600" FontSize="22" Foreground="#FF0031FF">未选择</TextBlock>
|
|
</StackPanel>
|
|
<StackPanel Name="panelQualified" Orientation="Horizontal" MinWidth="450" Grid.Row="2" VerticalAlignment="Center">
|
|
<TextBlock MinWidth="150" FontSize="20"> 是否合格品:</TextBlock>
|
|
<ComboBox Name="cmbQualified" Margin="2,0,2,0" MinWidth="300" FontSize="22"></ComboBox>
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
</UserControl>
|