终端一体化运控平台
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.
 
 
 

43 lines
1.5 KiB

  1. <UserControl
  2. x:Class="BPASmartClient.CustomResource.Pages.View.ProductionDataView"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:BPASmartClient.CustomResource.Pages.View"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:vm="clr-namespace:BPASmartClient.CustomResource.Pages.ViewModel"
  9. d:DesignHeight="450"
  10. d:DesignWidth="800"
  11. mc:Ignorable="d">
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="40" />
  15. <RowDefinition />
  16. </Grid.RowDefinitions>
  17. <Grid>
  18. <StackPanel Orientation="Horizontal">
  19. <TextBlock
  20. VerticalAlignment="Center"
  21. Foreground="White"
  22. Text="请输入开始时间:" />
  23. <DatePicker VerticalAlignment="Center" />
  24. <TextBlock
  25. VerticalAlignment="Center"
  26. Foreground="White"
  27. Text="请输入结束时间:" />
  28. <DatePicker VerticalAlignment="Center" />
  29. <Button Margin="5,0,5,0" Content="查询" />
  30. <Button Content="导入数据文件" />
  31. </StackPanel>
  32. </Grid>
  33. <Grid Grid.Row="1">
  34. <DataGrid ItemsSource="{Binding}" />
  35. </Grid>
  36. </Grid>
  37. </UserControl>