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.7 KiB
29 lines
1.7 KiB
<ad:DocumentContent x:Class="SiaSun.LMS.WPFClient.WH.WH_CELL_STATUS"
|
|
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"
|
|
xmlns:uc="clr-namespace:SiaSun.LMS.WPFClient.UC"
|
|
xmlns:ad="clr-namespace:AvalonDock;assembly=AvalonDock"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="300" d:DesignWidth="548"
|
|
Title="WH_CELL_STATUS" Loaded="DocumentContent_Loaded">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<uc:ucQuickQuery x:Name="ucQKQuery" Margin="2,5,2,5" Grid.Row="0"></uc:ucQuickQuery>
|
|
<uc:ucCommonDataGrid x:Name="gridQuery" Grid.Row="1" Margin="1"></uc:ucCommonDataGrid>
|
|
<WrapPanel Grid.Row="2" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,3,0,2" ButtonBase.Click="WrapPanel_Click">
|
|
<TextBlock Text="货位状态" FontSize="12" VerticalAlignment="Center" Margin="5,0"></TextBlock>
|
|
<ComboBox Name="cbbCELL_STATUS" Width="80" Height="25"></ComboBox>
|
|
<TextBlock Text="运行状态" FontSize="12" VerticalAlignment="Center" Margin="5,0"></TextBlock>
|
|
<ComboBox Name="cbbRUN_STATUS" Width="80" Height="25"></ComboBox>
|
|
<Button Name="btnConfirm" Width="70" Margin="5">保存</Button>
|
|
<Button Name="btnRefresh" Width="70" Margin="5">刷新</Button>
|
|
</WrapPanel>
|
|
|
|
</Grid>
|
|
</ad:DocumentContent>
|