巨石化纤
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.

16 lines
809 B

<UserControl x:Class="SSWMS.Client.UC.ucWareHouseQuery"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Border>
<WrapPanel>
<StackPanel Margin="5" Orientation="Horizontal">
<TextBlock Text="仓库" Margin="2" VerticalAlignment="Center"></TextBlock>
<ComboBox Name="cbWarehouse" Margin="2" MinWidth="100" SelectionChanged="cbWarehouse_SelectionChanged"></ComboBox>
</StackPanel>
<StackPanel Margin="5" Orientation="Horizontal">
<TextBlock Text="排" Margin="2" VerticalAlignment="Center"></TextBlock>
<ComboBox Name="cbCellZ" Margin="2" MinWidth="100" SelectionChanged="cbCellZ_SelectionChanged"></ComboBox>
</StackPanel>
</WrapPanel>
</Border>
</UserControl>