20 lines
830 B
Plaintext
20 lines
830 B
Plaintext
|
<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>
|