MauiTutorial/MauiApp2/Views/AboutPage.xaml

24 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:viewModels="clr-namespace:MauiApp2.ViewModels"
x:Class="MauiApp2.Views.AboutPage">
<ContentPage.BindingContext>
<viewModels:AboutViewModel />
</ContentPage.BindingContext>
<ContentPage.Content>
<VerticalStackLayout Spacing="10" Margin="10">
<HorizontalStackLayout Spacing="10">
<Image Source="dotnet_bot.png"
SemanticProperties.Description="The dot net bot waving hello!"
HeightRequest="64" />
<Label FontSize="22" FontAttributes="Bold" Text="{Binding Title}" VerticalOptions="End" />
<Label FontSize="22" Text="{Binding Version}" VerticalOptions="End" />
</HorizontalStackLayout>
<Label Text="{Binding Message}" />
<Button Text="Learn more..." Command="{Binding ShowMoreInfoCommand}" />
</VerticalStackLayout>
</ContentPage.Content>
</ContentPage>