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.
36 lines
1.9 KiB
36 lines
1.9 KiB
<ad:DocumentContent x:Class="SiaSun.LMS.WPFClient.SYS.RECORD_MES_LOG"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:ad="clr-namespace:AvalonDock;assembly=AvalonDock"
|
|
xmlns:uc="clr-namespace:SiaSun.LMS.WPFClient.UC"
|
|
Title="RECORD_MES_LOG" Height="353" Width="620" Loaded="DocumentContent_Loaded">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
|
|
<GroupBox Header="查询条件" Margin="2,5,2,1" Grid.Row="0">
|
|
<WrapPanel>
|
|
<Border Name="panelDateTime">
|
|
<WrapPanel VerticalAlignment="Center" MinWidth="120">
|
|
<TextBlock MinWidth="60" Margin="15,2,2,2">记录时间:</TextBlock>
|
|
<CheckBox Name="chkLogCreateTime" IsChecked="True" VerticalAlignment="Center" Margin="5,5,0,5"></CheckBox>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="从" VerticalAlignment="Center" Margin="5"></TextBlock>
|
|
<DatePicker Name="dtpStart" Margin="0,5,0,5" Width="100"></DatePicker>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="至" VerticalAlignment="Center" Margin="5"></TextBlock>
|
|
<DatePicker Name="dtpEnd" Margin="0,5,0,5" Width="100"></DatePicker>
|
|
</StackPanel>
|
|
</WrapPanel>
|
|
</Border>
|
|
<uc:ucQuickQuery x:Name="ucLogQuery" Margin="2,5,2,5"></uc:ucQuickQuery>
|
|
</WrapPanel>
|
|
</GroupBox>
|
|
|
|
<uc:ucCommonDataGrid x:Name="gridLog" Grid.Row="1"></uc:ucCommonDataGrid>
|
|
</Grid>
|
|
</ad:DocumentContent>
|