12345678910111213141516171819202122232425262728 |
- <Window x:Class="NEIntelligentControl2.Windows.AGCLineWindow"
- 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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:NEIntelligentControl2.Windows"
- xmlns:oxy="http://oxyplot.org/wpf"
- mc:Ignorable="d"
- Title="AGCLineWindow" Height="675" Width="1200" WindowStartupLocation="CenterScreen" Background="#FF041831">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="开始时间:" VerticalAlignment="Center" Foreground="WhiteSmoke"/>
- <TextBox MinWidth="100" VerticalAlignment="Center" x:Name="_tbStart"/>
- <TextBlock Text="结束时间:" VerticalAlignment="Center" Margin="20,0,0,0" Foreground="WhiteSmoke"/>
- <TextBox MinWidth="100" VerticalAlignment="Center" x:Name="_tbEnd"/>
- <Button Content="查 询" Click="Button_Click" Tag="search" Padding="12,3" Margin="10,0"/>
- <Button Content="导 出" Click="Button_Click" Tag="output" Padding="12,3" Margin="10,0"/>
- </StackPanel>
- <oxy:PlotView x:Name="_pv" Grid.Row="3" Background="Transparent"/>
- </Grid>
- </Window>
|