This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/MobileApps/MyDriving/MyDriving.UWP/Views/GetStarted5.xaml

30 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2022-11-03 20:41:13 +00:00
<Page
x:Class="MyDriving.UWP.Views.GetStarted5"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:controls="using:MyDriving.UWP.Controls"
mc:Ignorable="d">
<Grid>
<Grid.Background>
<ImageBrush Stretch="Fill" ImageSource="{StaticResource Background}" />
</Grid.Background>
<Image x:Name="Getstarted5" Source="{StaticResource GetStarted5}" Grid.Row="0"/>
<Grid VerticalAlignment="Bottom" >
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<controls:DotsControl x:Name="Dots" Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center"/>
<Button x:Name="DoneButton" Click="GoNext" Content="Let's Go!" HorizontalAlignment="Stretch" Height="40" Background="{StaticResource BrandColor}" Grid.Row="1"/>
</Grid>
</Grid>
</Page>