December 2019
Intermediate to advanced
528 pages
11h 19m
English
Our first task is going to be to change the MainPage.xaml to build our screen. Let's have a look at what the new XAML looks like and then go through our changes:
<Page x:Class="Boris_Client.MainView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:Boris_Client" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" xmlns:models="using:Boris_Client.Models" Loaded="Page_Loaded"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="*" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions ...
Read now
Unlock full access