| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <Page x:Class="CCDCountWpf.WpfPage.AuditTrailPage"
- 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:local="clr-namespace:CCDCountWpf.WpfPage"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="AuditTrailPage">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="40" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <Grid Grid.Row="0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <Button x:Name="BatchRecordBtn" Content="批记录" Grid.Column="0"></Button>
- <Button x:Name="FormulationRecordBtn" Content="生产配方记录" Grid.Column="1"></Button>
- <Button x:Name="ValueChangeRecordBtd" Content="参数修改记录" Grid.Column="2"></Button>
- <Button x:Name="ErrorRecordBtn" Content="异常记录" Grid.Column="3"></Button>
- </Grid>
- <Grid Grid.Row="1">
- <Grid x:Name="BatchRecordGrid" Visibility="Visible">
- <Grid.RowDefinitions>
- <RowDefinition Height="50" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <DatePicker Grid.Row="0" x:Name="BatchMinTime" Width="120" Height="30" HorizontalAlignment="Left" VerticalAlignment="Center" SelectedDateChanged="BatchMinTime_SelectedDateChanged"/>
- <DatePicker Grid.Row="0" x:Name="BatchMaxTime" Width="120" Height="30" HorizontalAlignment="Left" Margin="140,0,0,0" VerticalAlignment="Center" SelectedDateChanged="BatchMaxTime_SelectedDateChanged"/>
- <ComboBox Grid.Row="0" x:Name="BatchNumComBox" ItemsSource="{Binding BatchItems}" MaxDropDownHeight="100" Background="{x:Null}" HorizontalAlignment="Right" VerticalAlignment="Center" Height="30" Width="180" FontSize="12" HorizontalContentAlignment="Center" Padding="6,6,5,3" Margin="0,0,10,0"/>
- </Grid>
- <Grid x:Name="FormulationRecordGrid" Visibility="Collapsed"></Grid>
- <Grid x:Name="ValueChangeRecordGrid" Visibility="Collapsed"></Grid>
- <Grid x:Name="ErrorRecordGrid" Visibility="Collapsed"></Grid>
- </Grid>
- </Grid>
- </Page>
|