|
<Grid.RowDefinitions>
<RowDefinition Height="*" MinHeight="200"/><!-- resp. Height="200" -->
<RowDefinition Height="auto"/>
<RowDefinition Height="60" x:Name="FixRow" MinHeight="200"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="*"/><!-- resp. Height="200" -->
</Grid.RowDefinitions>
|
|
<Grid.RowDefinitions>
<RowDefinition Height="*"/><!-- resp. Height="200" -->
<RowDefinition Height="auto"/>
<RowDefinition Height="60" x:Name="FixRow" MinHeight="200" MaxHeight="200"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="*"/><!-- resp. Height="200" -->
</Grid.RowDefinitions>
|
|
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="auto" />
<RowDefinition />
</Grid.RowDefinitions>
<GroupBox Grid.Row="0" />
<syncfusion:SfGridSplitter
Grid.Row="1"
Height="15"
HorizontalAlignment="Stretch" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="auto" />
<RowDefinition />
</Grid.RowDefinitions>
<GroupBox Grid.Row="0" />
<syncfusion:SfGridSplitter
Grid.Row="1"
Height="15"
HorizontalAlignment="Stretch" />
<GroupBox Grid.Row="2" />
</Grid>
</Grid> |