<Grid RowSpacing="0" BackgroundColor="Blue">
<Grid.RowDefinitions>
<RowDefinition Height=".3*"/>
<RowDefinition Height=".7*"/>
</Grid.RowDefinitions>
<Label Grid.Row="0" BackgroundColor="Blue"/>
<sfgrid:SfDataGrid x:Name="dataGrid" Grid.Row="1" Padding="0"
ColumnSizer="Auto"
ItemsSource="{Binding OrdersInfo}">
</sfgrid:SfDataGrid>
</Grid> |
<Grid x:Name="grid">
<Label Grid.Row="1" BackgroundColor="Blue" Text="Firt Row"TextColor="White"/>
<sfgrid:SfDataGrid x:Name="dataGrid" Grid.Row="0"BackgroundColor="Blue" Padding="0"
ColumnSizer="Auto"
ItemsSource="{Binding OrdersInfo}">
</sfgrid:SfDataGrid>
</Grid> |