|
- <UserControl
- x:Class="BPASmartClient.CustomResource.Pages.View.ProductionDataView"
- 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:local="clr-namespace:BPASmartClient.CustomResource.Pages.View"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:vm="clr-namespace:BPASmartClient.CustomResource.Pages.ViewModel"
- d:DesignHeight="450"
- d:DesignWidth="800"
- mc:Ignorable="d">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="40" />
- <RowDefinition />
- </Grid.RowDefinitions>
-
-
-
- <Grid>
- <StackPanel Orientation="Horizontal">
- <TextBlock
- VerticalAlignment="Center"
- Foreground="White"
- Text="请输入开始时间:" />
- <DatePicker VerticalAlignment="Center" />
- <TextBlock
- VerticalAlignment="Center"
- Foreground="White"
- Text="请输入结束时间:" />
- <DatePicker VerticalAlignment="Center" />
- <Button Margin="5,0,5,0" Content="查询" />
- <Button Content="导入数据文件" />
- </StackPanel>
- </Grid>
-
- <Grid Grid.Row="1">
- <DataGrid ItemsSource="{Binding}" />
- </Grid>
-
- </Grid>
- </UserControl>
|