AGCLineWindow.xaml 1.5 KB

12345678910111213141516171819202122232425262728
  1. <Window x:Class="NEIntelligentControl2.Windows.AGCLineWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:NEIntelligentControl2.Windows"
  7. xmlns:oxy="http://oxyplot.org/wpf"
  8. mc:Ignorable="d"
  9. Title="AGCLineWindow" Height="675" Width="1200" WindowStartupLocation="CenterScreen" Background="#FF041831">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="Auto"/>
  13. <RowDefinition/>
  14. </Grid.RowDefinitions>
  15. <StackPanel Orientation="Horizontal">
  16. <TextBlock Text="开始时间:" VerticalAlignment="Center" Foreground="WhiteSmoke"/>
  17. <TextBox MinWidth="100" VerticalAlignment="Center" x:Name="_tbStart"/>
  18. <TextBlock Text="结束时间:" VerticalAlignment="Center" Margin="20,0,0,0" Foreground="WhiteSmoke"/>
  19. <TextBox MinWidth="100" VerticalAlignment="Center" x:Name="_tbEnd"/>
  20. <Button Content="查 询" Click="Button_Click" Tag="search" Padding="12,3" Margin="10,0"/>
  21. <Button Content="导 出" Click="Button_Click" Tag="output" Padding="12,3" Margin="10,0"/>
  22. </StackPanel>
  23. <oxy:PlotView x:Name="_pv" Grid.Row="3" Background="Transparent"/>
  24. </Grid>
  25. </Window>