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.
27 lines
1.3 KiB
27 lines
1.3 KiB
<ad:DocumentContent x:Class="SiaSun.LMS.WPFClient.SYS.MES_RETRY"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:ad="clr-namespace:AvalonDock;assembly=AvalonDock"
|
|
xmlns:uc="clr-namespace:SiaSun.LMS.WPFClient.UC"
|
|
Title="DataGridWindow" Height="300" Width="300" Loaded="DocumentContent_Loaded">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"></ColumnDefinition>
|
|
<ColumnDefinition Width="Auto"></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
<uc:ucQuickQuery x:Name="ucQuery" Grid.Row="0" ></uc:ucQuickQuery>
|
|
<uc:ucCommonDataGrid x:Name="gridQuery" Grid.Row="1" Margin="2"></uc:ucCommonDataGrid>
|
|
|
|
<GroupBox Grid.Row="2" Grid.ColumnSpan="3" Header="操作区" >
|
|
<Border>
|
|
<Button Name="btnRetry" Margin="350,0,350,0" Click="BtnRetryClick" >重发</Button>
|
|
</Border>
|
|
</GroupBox>
|
|
</Grid>
|
|
</ad:DocumentContent>
|