Files
GreadyPoang/GreadyPoang/MainPage.xaml

29 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:partial="clr-namespace:GreadyPoang.ViewsPartial"
x:Class="GreadyPoang.MainPage"
xmlns:vm ="clr-namespace:GreadyPoang.CommandClasses"
x:DataType="vm:MainPageViewModelCommands"
Background="LightCyan"
Title="{StaticResource ApplicationTitle}">
<Grid Style="{StaticResource Grid.Page}">
<partial:HeaderView Grid.Row="0"
Grid.ColumnSpan="2"
ViewTitle="{StaticResource ApplicationTitle}"
ViewDescription="Välkommen till Gready">
</partial:HeaderView>
<Image
Source="snurrtarning.gif"
IsAnimationPlaying="True"
HorizontalOptions="Center"
VerticalOptions="Center"
Aspect="AspectFit"
Grid.Row="1"
Grid.Column="0"
HeightRequest="250"
Margin="10"/>
</Grid>
</ContentPage>