|
|
<Window x:Class="XGLFinishPro.Views.SelfInspectionForm"
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
xmlns:local="clr-namespace:XGLFinishPro.Views"
|
|
|
mc:Ignorable="d"
|
|
|
Height="1000" Width="1900"
|
|
|
Loaded="Window_Loaded"
|
|
|
WindowState="Maximized" ResizeMode="NoResize" WindowStyle="None"
|
|
|
>
|
|
|
<Window.Resources>
|
|
|
<Style TargetType="ComboBox">
|
|
|
<Setter Property="Width" Value="50"/>
|
|
|
<Setter Property="Height" Value="30"/>
|
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
|
<Setter Property="HorizontalContentAlignment" Value="Center"/>
|
|
|
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
|
|
<Setter Property="FontSize" Value="20"/>
|
|
|
<Setter Property="Template">
|
|
|
<Setter.Value>
|
|
|
<ControlTemplate TargetType="ComboBox">
|
|
|
<Grid x:Name="TogGrid">
|
|
|
<ToggleButton x:Name="ToggleButton"
|
|
|
ClickMode="Press"
|
|
|
Focusable="false"
|
|
|
Click="ToggleButton_Click"
|
|
|
Background="{TemplateBinding Background}"
|
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
|
HorizontalContentAlignment="Stretch"
|
|
|
VerticalContentAlignment="Stretch">
|
|
|
<ContentPresenter HorizontalAlignment="Center"
|
|
|
VerticalAlignment="Center"
|
|
|
Content="{TemplateBinding SelectionBoxItem}"
|
|
|
ContentTemplate="{TemplateBinding SelectionBoxItemTemplate}"
|
|
|
ContentTemplateSelector="{TemplateBinding ItemTemplateSelector}"
|
|
|
SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
|
|
|
</ToggleButton>
|
|
|
<Popup x:Name="Popup"
|
|
|
Placement="Bottom"
|
|
|
IsOpen="{TemplateBinding IsDropDownOpen}"
|
|
|
AllowsTransparency="True"
|
|
|
Focusable="False"
|
|
|
PopupAnimation="Slide">
|
|
|
<Grid x:Name="DropDown"
|
|
|
SnapsToDevicePixels="True"
|
|
|
MinWidth="{TemplateBinding ActualWidth}"
|
|
|
MaxHeight="200">
|
|
|
<Border x:Name="DropDownBorder"
|
|
|
Background="White"
|
|
|
BorderThickness="1"
|
|
|
BorderBrush="Gray"/>
|
|
|
<ScrollViewer Margin="4,6,4,6"
|
|
|
SnapsToDevicePixels="True">
|
|
|
<StackPanel IsItemsHost="True"
|
|
|
KeyboardNavigation.DirectionalNavigation="Contained"/>
|
|
|
</ScrollViewer>
|
|
|
</Grid>
|
|
|
</Popup>
|
|
|
</Grid>
|
|
|
<ControlTemplate.Triggers>
|
|
|
<Trigger Property="IsFocused" Value="true">
|
|
|
<Setter TargetName="ToggleButton" Property="Background" Value="Gray"/>
|
|
|
</Trigger>
|
|
|
<Trigger Property="IsMouseOver" Value="true">
|
|
|
<Setter TargetName="ToggleButton" Property="Background" Value="Gray"/>
|
|
|
</Trigger>
|
|
|
<Trigger Property="HasItems" Value="false">
|
|
|
<Setter TargetName="DropDownBorder" Property="MinHeight" Value="95"/>
|
|
|
</Trigger>
|
|
|
<Trigger Property="IsEnabled" Value="false">
|
|
|
<Setter Property="Foreground" Value="Gray"/>
|
|
|
</Trigger>
|
|
|
<Trigger Property="IsGrouping" Value="true">
|
|
|
<Setter Property="ScrollViewer.CanContentScroll" Value="false"/>
|
|
|
</Trigger>
|
|
|
<!-- 新增的Trigger,用于在选择完成后将按钮颜色变回原来的颜色 -->
|
|
|
<Trigger Property="IsDropDownOpen" Value="false">
|
|
|
<Setter TargetName="ToggleButton" Property="Background" Value="White"/>
|
|
|
</Trigger>
|
|
|
</ControlTemplate.Triggers>
|
|
|
</ControlTemplate>
|
|
|
</Setter.Value>
|
|
|
</Setter>
|
|
|
</Style>
|
|
|
<Style x:Key="CheckBoxStyle" TargetType="{x:Type CheckBox}">
|
|
|
<Setter Property="HorizontalAlignment" Value="Center" />
|
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
|
<Setter Property="LayoutTransform">
|
|
|
<Setter.Value>
|
|
|
<ScaleTransform ScaleX="1.5" ScaleY="1.5" />
|
|
|
</Setter.Value>
|
|
|
</Setter>
|
|
|
</Style>
|
|
|
<!--<Style x:Key="ComboBoxStyle" TargetType="{x:Type ComboBox}">
|
|
|
<Setter Property="HorizontalAlignment" Value="Center" />
|
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
|
<Setter Property="Width" Value="40"/>
|
|
|
<Setter Property="FontSize" Value="15"/>
|
|
|
<Setter Property="LayoutTransform">
|
|
|
<Setter.Value>
|
|
|
<ScaleTransform ScaleX="1.5" ScaleY="1.5" />
|
|
|
</Setter.Value>
|
|
|
</Setter>
|
|
|
</Style>-->
|
|
|
<Style x:Key="LabelStyle" TargetType="Label">
|
|
|
<Setter Property="FontSize" Value="25"/>
|
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
|
</Style>
|
|
|
<Style x:Key="TextBlockStyle" TargetType="TextBlock">
|
|
|
<Setter Property="FontSize" Value="25"/>
|
|
|
<Setter Property="Margin" Value="10,0,8,0"/>
|
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
|
</Style>
|
|
|
</Window.Resources>
|
|
|
<Viewbox>
|
|
|
<Grid Height="1000" Width="1900" >
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="auto"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="auto"/>
|
|
|
<RowDefinition Height="auto"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
<Grid Height="200" Width="1900" Background="White">
|
|
|
<Grid.ColumnDefinitions>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="2*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<StackPanel Orientation="Horizontal" Grid.Column="2" VerticalAlignment="Center" HorizontalAlignment="Center">
|
|
|
<Button Content="刷新" Background="#2B7EE6" Foreground="White" Width="100" FontSize="20" Height="50" Margin="10" Click="Refresh_Click"/>
|
|
|
<Button Content="新增一列" Background="#2B7EE6" Foreground="White" Width="100" FontSize="20" Height="50" Margin="10" Click="Add_Click"/>
|
|
|
<Button Content="提交" Background="#2B7EE6" Foreground="White" Width="100" FontSize="20" Height="50" Margin="10" Click="Submit_Click"/>
|
|
|
<Button Content="关闭" Background="#2B7EE6" Foreground="White" Width="100" FontSize="20" Height="50" Margin="10" Click="Close_Click"/>
|
|
|
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation="Horizontal" Grid.Column="0" Grid.Row="0">
|
|
|
<Image Source="/Resources/logo.png" Width="160" Height="50"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Grid.Column="1">
|
|
|
<TextBlock Text="中山榄菊日化实业有限公司" Grid.Column="1" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="40" TextWrapping="Wrap" />
|
|
|
<TextBlock Text="自检互检记录表" Grid.Column="1" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="40" TextWrapping="Wrap" />
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation="Horizontal" Grid.Column="0" Grid.Row="1">
|
|
|
<TextBlock Text="生产车间:黑蚊香车间" Style="{StaticResource TextBlockStyle}"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation="Horizontal" Grid.Column="0" Grid.Row="2">
|
|
|
<TextBlock Text="产品名称:" Style="{StaticResource TextBlockStyle}"/>
|
|
|
<TextBlock x:Name="ProductName" Style="{StaticResource TextBlockStyle}"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation="Horizontal" Grid.Column="1" Grid.Row="1">
|
|
|
<TextBlock Text="生成产线:" Style="{StaticResource TextBlockStyle}"/>
|
|
|
<TextBlock x:Name="Line" Style="{StaticResource TextBlockStyle}"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation="Horizontal" Grid.Column="2" Grid.Row="1">
|
|
|
<TextBlock Text="检查人:" Style="{StaticResource TextBlockStyle}"/>
|
|
|
<TextBlock x:Name="NickName" Style="{StaticResource TextBlockStyle}"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation="Horizontal" Grid.Column="2" Grid.Row="2">
|
|
|
<TextBlock Text="检查日期:" Style="{StaticResource TextBlockStyle}"/>
|
|
|
<TextBlock x:Name="CheckDate" Style="{StaticResource TextBlockStyle}"/>
|
|
|
</StackPanel>
|
|
|
</Grid>
|
|
|
</StackPanel>
|
|
|
<Border Background="White" Margin="20,0,20,0" BorderBrush="Black" BorderThickness="1" Grid.Row="1" >
|
|
|
<Grid x:Name="MainGrid">
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<Grid.ColumnDefinitions>
|
|
|
<ColumnDefinition Width="0.6*"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
<Line X1="0" X2="1" Y1="0" Y2="0" Grid.Row="0" StrokeThickness="1" VerticalAlignment="Top" Stretch="Fill" Stroke="Black" Grid.ColumnSpan="8"/>
|
|
|
<Line X1="0" X2="1" Y1="0" Y2="0" Grid.Row="1" Grid.Column="1" StrokeThickness="1" VerticalAlignment="Top" Stretch="Fill" Stroke="Black" Grid.ColumnSpan="7"/>
|
|
|
<Line X1="0" X2="1" Y1="0" Y2="0" Grid.Row="2" StrokeThickness="1" VerticalAlignment="Top" Stretch="Fill" Stroke="Black" Grid.ColumnSpan="8"/>
|
|
|
<Line X1="0" X2="1" Y1="0" Y2="0" Grid.Row="3" StrokeThickness="1" VerticalAlignment="Top" Stretch="Fill" Stroke="Black" Grid.ColumnSpan="8"/>
|
|
|
<Line X1="0" X2="1" Y1="0" Y2="0" Grid.Row="4" StrokeThickness="1" VerticalAlignment="Top" Stretch="Fill" Stroke="Black" Grid.ColumnSpan="8"/>
|
|
|
<Line X1="0" X2="1" Y1="0" Y2="0" Grid.Row="5" StrokeThickness="1" VerticalAlignment="Top" Stretch="Fill" Stroke="Black" Grid.ColumnSpan="8"/>
|
|
|
<Line X1="0" X2="1" Y1="0" Y2="0" Grid.Row="6" StrokeThickness="1" VerticalAlignment="Top" Stretch="Fill" Stroke="Black" Grid.ColumnSpan="8"/>
|
|
|
<Line X1="0" X2="1" Y1="0" Y2="0" Grid.Row="7" StrokeThickness="1" VerticalAlignment="Top" Stretch="Fill" Stroke="Black" Grid.ColumnSpan="8"/>
|
|
|
<Line X1="0" X2="1" Y1="0" Y2="0" Grid.Row="8" StrokeThickness="1" VerticalAlignment="Top" Stretch="Fill" Stroke="Black" Grid.ColumnSpan="8"/>
|
|
|
<Line X1="0" X2="1" Y1="0" Y2="0" Grid.Row="9" StrokeThickness="1" VerticalAlignment="Top" Stretch="Fill" Stroke="Black" Grid.ColumnSpan="8"/>
|
|
|
<Line X1="0" X2="1" Y1="0" Y2="0" Grid.Row="10" StrokeThickness="1" VerticalAlignment="Bottom" Stretch="Fill" Stroke="Black" Grid.ColumnSpan="8"/>
|
|
|
<Line X1="0" X2="0" Y1="1" Y2="0" Grid.Column="0" StrokeThickness="1" HorizontalAlignment="Left" Stretch="Fill" Stroke="Black" Grid.RowSpan="11"/>
|
|
|
<Line X1="0" X2="0" Y1="1" Y2="0" Grid.Column="1" StrokeThickness="1" HorizontalAlignment="Left" Stretch="Fill" Stroke="Black" Grid.RowSpan="11"/>
|
|
|
<Line X1="0" X2="0" Y1="1" Y2="0" Grid.Column="2" StrokeThickness="1" HorizontalAlignment="Left" Stretch="Fill" Stroke="Black" Grid.RowSpan="11"/>
|
|
|
<Line X1="0" X2="0" Y1="1" Y2="0" Grid.Column="3" StrokeThickness="1" HorizontalAlignment="Left" Stretch="Fill" Stroke="Black" Grid.RowSpan="11"/>
|
|
|
<Line X1="0" X2="0" Y1="1" Y2="0" Grid.Column="4" StrokeThickness="1" HorizontalAlignment="Left" Stretch="Fill" Stroke="Black" Grid.RowSpan="11"/>
|
|
|
<Line X1="0" X2="0" Y1="1" Y2="0" Grid.Column="5" StrokeThickness="1" HorizontalAlignment="Left" Stretch="Fill" Stroke="Black" Grid.RowSpan="11"/>
|
|
|
<Line X1="0" X2="0" Y1="1" Y2="0" Grid.Column="6" StrokeThickness="1" HorizontalAlignment="Left" Stretch="Fill" Stroke="Black" Grid.RowSpan="11"/>
|
|
|
<Line X1="0" X2="0" Y1="1" Y2="0" Grid.Column="7" StrokeThickness="1" HorizontalAlignment="Left" Stretch="Fill" Stroke="Black" Grid.RowSpan="11"/>
|
|
|
<Line X1="0" X2="0" Y1="1" Y2="0" Grid.Column="7" StrokeThickness="1" HorizontalAlignment="Right" Stretch="Fill" Stroke="Black" Grid.RowSpan="11"/>
|
|
|
<TextBlock Text="项目" Style="{StaticResource TextBlockStyle}" Grid.RowSpan="2"/>
|
|
|
<TextBlock Text="搭片漏片" Style="{StaticResource TextBlockStyle}" Grid.Row="2"/>
|
|
|
<TextBlock Text="包材检查" Style="{StaticResource TextBlockStyle}" Grid.Row="3"/>
|
|
|
<TextBlock Text="日期码" Style="{StaticResource TextBlockStyle}" Grid.Row="4"/>
|
|
|
<TextBlock Text="包膜良好" Style="{StaticResource TextBlockStyle}" Grid.Row="5"/>
|
|
|
<TextBlock Text="漏放产品" Style="{StaticResource TextBlockStyle}" Grid.Row="6"/>
|
|
|
<TextBlock Text="正常开启剔除装置" Style="{StaticResource TextBlockStyle}" TextWrapping="Wrap" Grid.Row="7"/>
|
|
|
<TextBlock Text="装箱数量准确" Style="{StaticResource TextBlockStyle}" TextWrapping="Wrap" Grid.Row="8"/>
|
|
|
<TextBlock Text="其他" Style="{StaticResource TextBlockStyle}" Grid.Row="9"/>
|
|
|
<TextBlock Grid.Column="1" Text="检查时间" Style="{StaticResource TextBlockStyle}"/>
|
|
|
<TextBlock Grid.Column="2" Text="检查时间" Style="{StaticResource TextBlockStyle}"/>
|
|
|
<TextBlock Grid.Column="3" Text="检查时间" Style="{StaticResource TextBlockStyle}"/>
|
|
|
<TextBlock Grid.Column="4" Text="检查时间" Style="{StaticResource TextBlockStyle}"/>
|
|
|
<TextBlock Grid.Column="5" Text="检查时间" Style="{StaticResource TextBlockStyle}"/>
|
|
|
<TextBlock Grid.Column="6" Text="检查时间" Style="{StaticResource TextBlockStyle}"/>
|
|
|
<TextBlock Grid.Column="7" Text="检查时间" Style="{StaticResource TextBlockStyle}"/>
|
|
|
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal" VerticalAlignment="Center" Grid.Row="1" Grid.Column="1">
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartHour1"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartMintues1"/>
|
|
|
<TextBlock Text="-" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndHour1"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndMintues1"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal" VerticalAlignment="Center" Grid.Row="1" Grid.Column="2">
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartHour2"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartMintues2"/>
|
|
|
<TextBlock Text="-" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndHour2"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndMintues2"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal" VerticalAlignment="Center" Grid.Row="1" Grid.Column="3">
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartHour3"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartMintues3"/>
|
|
|
<TextBlock Text="-" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndHour3"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndMintues3"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal" VerticalAlignment="Center" Grid.Row="1" Grid.Column="4">
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartHour4"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartMintues4"/>
|
|
|
<TextBlock Text="-" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndHour4"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndMintues4"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal" VerticalAlignment="Center" Grid.Row="1" Grid.Column="5">
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartHour5"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartMintues5"/>
|
|
|
<TextBlock Text="-" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndHour5"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndMintues5"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal" VerticalAlignment="Center" Grid.Row="1" Grid.Column="6">
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartHour6"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartMintues6"/>
|
|
|
<TextBlock Text="-" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndHour6"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndMintues6"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal" VerticalAlignment="Center" Grid.Row="1" Grid.Column="7">
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartHour7"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="StartMintues7"/>
|
|
|
<TextBlock Text="-" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndHour7"/>
|
|
|
<TextBlock Text=":" VerticalAlignment="Center"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" x:Name="EndMintues7"/>
|
|
|
</StackPanel>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="2" Grid.Column="1" x:Name="MissingTie1" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="3" Grid.Column="1" x:Name="Package1" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="4" Grid.Column="1" x:Name="DateCode1" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="5" Grid.Column="1" x:Name="PackageGood1" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="6" Grid.Column="1" x:Name="LeakProduct1" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="7" Grid.Column="1" x:Name="NormalOpen1" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="8" Grid.Column="1" x:Name="BoxQuantity1" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="9" Grid.Column="1" x:Name="Other1" Height="50" Width="200"/>
|
|
|
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="2" Grid.Column="2" x:Name="MissingTie2" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="3" Grid.Column="2" x:Name="Package2" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="4" Grid.Column="2" x:Name="DateCode2" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="5" Grid.Column="2" x:Name="PackageGood2" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="6" Grid.Column="2" x:Name="LeakProduct2" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="7" Grid.Column="2" x:Name="NormalOpen2" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="8" Grid.Column="2" x:Name="BoxQuantity2" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="9" Grid.Column="2" x:Name="Other2" Height="50" Width="200"/>
|
|
|
|
|
|
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="2" Grid.Column="3" x:Name="MissingTie3" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="3" Grid.Column="3" x:Name="Package3" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="4" Grid.Column="3" x:Name="DateCode3" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="5" Grid.Column="3" x:Name="PackageGood3" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="6" Grid.Column="3" x:Name="LeakProduct3" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="7" Grid.Column="3" x:Name="NormalOpen3" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="8" Grid.Column="3" x:Name="BoxQuantity3" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="9" Grid.Column="3" x:Name="Other3" Height="50" Width="200"/>
|
|
|
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="2" Grid.Column="4" x:Name="MissingTie4" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="3" Grid.Column="4" x:Name="Package4" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="4" Grid.Column="4" x:Name="DateCode4" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="5" Grid.Column="4" x:Name="PackageGood4" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="6" Grid.Column="4" x:Name="LeakProduct4" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="7" Grid.Column="4" x:Name="NormalOpen4" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="8" Grid.Column="4" x:Name="BoxQuantity4" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="9" Grid.Column="4" x:Name="Other4" Height="50" Width="200"/>
|
|
|
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="2" Grid.Column="5" x:Name="MissingTie5" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="3" Grid.Column="5" x:Name="Package5" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="4" Grid.Column="5" x:Name="DateCode5" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="5" Grid.Column="5" x:Name="PackageGood5" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="6" Grid.Column="5" x:Name="LeakProduct5" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="7" Grid.Column="5" x:Name="NormalOpen5" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="8" Grid.Column="5" x:Name="BoxQuantity5" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="9" Grid.Column="5" x:Name="Other5" Height="50" Width="200"/>
|
|
|
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="2" Grid.Column="6" x:Name="MissingTie6" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="3" Grid.Column="6" x:Name="Package6" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="4" Grid.Column="6" x:Name="DateCode6" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="5" Grid.Column="6" x:Name="PackageGood6" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="6" Grid.Column="6" x:Name="LeakProduct6" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="7" Grid.Column="6" x:Name="NormalOpen6" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="8" Grid.Column="6" x:Name="BoxQuantity6" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="9" Grid.Column="6" x:Name="Other6" Height="50" Width="200"/>
|
|
|
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="2" Grid.Column="7" x:Name="MissingTie7" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="3" Grid.Column="7" x:Name="Package7" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="4" Grid.Column="7" x:Name="DateCode7" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="5" Grid.Column="7" x:Name="PackageGood7" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="6" Grid.Column="7" x:Name="LeakProduct7" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="7" Grid.Column="7" x:Name="NormalOpen7" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="8" Grid.Column="7" x:Name="BoxQuantity7" Height="50" Width="200"/>
|
|
|
<ComboBox SelectionChanged="SelectionChanged" Grid.Row="9" Grid.Column="7" x:Name="Other7" Height="50" Width="200"/>
|
|
|
</Grid>
|
|
|
</Border>
|
|
|
<Border BorderBrush="Black" Margin="20,0,20,0" BorderThickness="1" Grid.Row="2" >
|
|
|
<StackPanel Orientation="Horizontal" VerticalAlignment="Top">
|
|
|
<TextBlock Text="异常处理:" Margin="5,20,0,0" FontSize="30"/>
|
|
|
<TextBox x:Name="ExceptionHandling" TextWrapping="Wrap" Margin="10,0,0,0" Height="150" Width="1700" FontSize="20"/>
|
|
|
</StackPanel>
|
|
|
</Border>
|
|
|
<StackPanel Grid.Row="3" Orientation="Vertical" Margin="20,0,20,10" >
|
|
|
<TextBlock Text="备注:" Style="{StaticResource TextBlockStyle}" HorizontalAlignment="Left"/>
|
|
|
<TextBlock Text="每两小时进行一次检查,无异常的打√,有异常的打x并在下方“异常处理”处填写异常及对应处理措施" Style="{StaticResource TextBlockStyle}" HorizontalAlignment="Left"/>
|
|
|
</StackPanel>
|
|
|
</Grid>
|
|
|
</Viewbox>
|
|
|
</Window>
|