1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <Page x:Class="B20UVLog.Pages.ServoAxisStatus"
- 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="ServoAxisStatus">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <TextBlock Grid.Row="0" Text="Servo Axis Status" FontSize="25" Margin="10 5"/>
- <StackPanel Grid.Row="1" Orientation="Horizontal" VerticalAlignment="Center">
- <My:MComboBox>
- <ComboBoxItem>WSZ1</ComboBoxItem>
- <ComboBoxItem>WSZ2</ComboBoxItem>
- <ComboBoxItem>WSZ3</ComboBoxItem>
- <ComboBoxItem>WSZ4</ComboBoxItem>
- <ComboBoxItem>WSX1</ComboBoxItem>
- <ComboBoxItem>WSX2</ComboBoxItem>
- <ComboBoxItem>WSY1</ComboBoxItem>
- <ComboBoxItem>WSY2</ComboBoxItem>
- <ComboBoxItem>CSXL</ComboBoxItem>
- <ComboBoxItem>CSYL</ComboBoxItem>
- <ComboBoxItem>CSZL</ComboBoxItem>
- <ComboBoxItem>CSXR</ComboBoxItem>
- <ComboBoxItem>CSYR</ComboBoxItem>
- <ComboBoxItem>CSZR</ComboBoxItem>
- <ComboBoxItem>WSL</ComboBoxItem>
- <ComboBoxItem>WSS</ComboBoxItem>
- </My:MComboBox>
- <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>
|