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/GetStarted3.xaml

20 lines
830 B
Plaintext
Raw Permalink Normal View History

2022-11-03 20:41:13 +00:00
<Page
x:Class="MyDriving.UWP.Views.GetStarted3"
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="Getstarted3" Source="{StaticResource GetStarted3}" Grid.Row="0"/>
<Grid Height="60" VerticalAlignment="Bottom">
<controls:DotsControl x:Name="Dots" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Grid>
</Grid>
</Page>