12345678910111213141516171819202122232425262728293031323334 |
- <Page x:Class="B20UVLog.Pages.GlassInformation"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:B20UVLog.Pages" xmlns:My="clr-namespace:MyWPFControl.Controls;assembly=MyWPFControl"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="GlassInformation">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <TextBlock Grid.Row="0" Text="Glass Information" FontSize="25" Margin="10 5"/>
- <StackPanel Grid.Row="1" Orientation="Horizontal" VerticalAlignment="Center">
- <!--<My:MTextBox x:Name="TextIndex" Title="Index_No"/>-->
- <My:MDateTimePicker x:Name="DTPStart" Title="开始时间"/>
- <TextBlock Text="--" VerticalAlignment="Center" Margin="2"/>
- <My:MDateTimePicker x:Name="DTPEnd" Title="结束时间"/>
- <My:MButton x:Name="BtnSearch" Content="查询" Type="Primary" Click="BtnSearch_Click"/>
- <My:MButton x:Name="BtnReset" Content="条件重置" Click="BtnReset_Click"/>
- <My:MButton x:Name="BtnExport" Content="导出报表" Click="BtnExport_Click" Type="Warning"/>
- </StackPanel>
- <StackPanel x:Name="DP" Grid.Row="2">
- <My:MDataGrid x:Name="MyControlDataGrid" DockPanel.Dock="Top" AutoGenerateColumns="True"/>
- <My:MPagination x:Name="MyPagination" DockPanel.Dock="Bottom" PageIndexChange="MyPagination_PageIndexChange"/>
- </StackPanel>
- </Grid>
- </Page>
|