26 lines
798 B
XML
26 lines
798 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="AdventureWorks.MAUI.ViewsPartial.HeaderView">
|
|
|
|
<Grid RowDefinitions="Auto,Auto,Auto">
|
|
|
|
<Label Grid.Row="0"
|
|
Text="{Binding ViewTitle}"
|
|
HorizontalOptions="Center"
|
|
FontSize="Title" />
|
|
|
|
<Label Grid.Row="1"
|
|
Grid.ColumnSpan="2"
|
|
Text="{Binding ViewDescription}"
|
|
HorizontalOptions="Center"
|
|
FontSize="Body" />
|
|
|
|
<BoxView Grid.Row="2"
|
|
Grid.ColumnSpan="2"
|
|
Margin="0,0,0,20"
|
|
HeightRequest="1"
|
|
Color="Black" />
|
|
</Grid>
|
|
</ContentView>
|