宜昌华友原料库管理软件
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.

33 lines
1.6 KiB

<ad:DocumentContent x:Class="SiaSun.LMS.WPFClient.SYS.RECORD_SUMMARY"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:uc="clr-namespace:SiaSun.LMS.WPFClient.UC"
xmlns:ad="clr-namespace:AvalonDock;assembly=AvalonDock"
Title="RECORD_SUMMARY" Height="300" Width="472" Loaded="DocumentContent_Loaded">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="*"></RowDefinition>
</Grid.RowDefinitions>
<Border Grid.Row="0">
<WrapPanel VerticalAlignment="Center" MinWidth="120">
<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 Margin="3" HorizontalAlignment="Left" VerticalAlignment="Center" Grid.Row="3" ButtonBase.Click="WrapPanel_Click">
<Button Name="btnSearch" Width="60" Margin="10,0,10,0">查询</Button>
<Button Name="btnClear" Width="60">清空</Button>
</WrapPanel>
</WrapPanel>
</Border>
<GroupBox Grid.Row="1" Header="入出库记录统计" Margin="1">
<uc:ucCommonDataGrid x:Name="dgRecordSummary"></uc:ucCommonDataGrid>
</GroupBox>
</Grid>
</ad:DocumentContent>