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.
28 lines
1.4 KiB
28 lines
1.4 KiB
<UserControl x:Class="SSWMS.Client.UC.ucTopParentBottomChild"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:uc="clr-namespace:SSWMS.Client.UC">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<GroupBox Grid.Row="0" Name="gbParent">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*" ></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<uc:ucDateSect Grid.Row="0" x:Name="dsDateSect" Visibility="Collapsed"></uc:ucDateSect>
|
|
<uc:ucQuickQuery Grid.Row="1" x:Name="qqParent"></uc:ucQuickQuery>
|
|
<uc:ucCommonDataGrid Grid.Row="2" x:Name="dgParent"></uc:ucCommonDataGrid>
|
|
</Grid>
|
|
</GroupBox>
|
|
<GridSplitter Grid.Row="1" HorizontalAlignment="Stretch"></GridSplitter>
|
|
<GroupBox Grid.Row="2" Name="gbChild">
|
|
<uc:ucCommonDataGrid x:Name="dgChild"></uc:ucCommonDataGrid>
|
|
</GroupBox>
|
|
</Grid>
|
|
</UserControl>
|