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/GetStarted4.xaml
2022-11-03 16:41:13 -04:00

20 lines
830 B
XML

<Page
x:Class="MyDriving.UWP.Views.GetStarted4"
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="Getstarted4" Source="{StaticResource GetStarted4}" Grid.Row="0"/>
<Grid Height="60" VerticalAlignment="Bottom">
<controls:DotsControl x:Name="Dots" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Grid>
</Grid>
</Page>