You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Shell
|
|
x:Class="MauiSpark.AppShell"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:MauiSpark"
|
|
xmlns:pages="clr-namespace:MauiSpark.Pages"
|
|
Shell.NavBarIsVisible="False"
|
|
Shell.FlyoutBehavior="Flyout"
|
|
Title="Mastermind">
|
|
|
|
<ShellContent
|
|
Title="Accueil"
|
|
ContentTemplate="{DataTemplate pages:Accueil}" />
|
|
|
|
<ShellContent
|
|
Title="Connexion"
|
|
ContentTemplate="{DataTemplate pages:ConnexionPage}" />
|
|
|
|
<ShellContent
|
|
Title="TableauScore"
|
|
ContentTemplate="{DataTemplate pages:TableauScore}" />
|
|
|
|
<ShellContent
|
|
Title="Regle"
|
|
ContentTemplate="{DataTemplate pages:Regle}" />
|
|
|
|
<ShellContent
|
|
Title="Victoire"
|
|
ContentTemplate="{DataTemplate pages:Victoire}" />
|
|
|
|
<ShellContent
|
|
Title="Defaite"
|
|
ContentTemplate="{DataTemplate pages:Defaite}" />
|
|
|
|
<ShellContent
|
|
Title="Egalite"
|
|
ContentTemplate="{DataTemplate pages:Egalite}" />
|
|
|
|
<ShellContent
|
|
Title="Plateau"
|
|
ContentTemplate="{DataTemplate pages:Plateau}" />
|
|
|
|
</Shell>
|