1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-31 15:36:07 +00:00

Test flyout

This commit is contained in:
Yan Maniez 2019-08-30 09:40:23 +02:00
parent ad08fcf4d3
commit 8df998b727

View file

@ -2,15 +2,83 @@
<Shell xmlns="http://xamarin.com/schemas/2014/forms" <Shell xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:AideDeJeu.Views" xmlns:local="clr-namespace:AideDeJeu.Views"
xmlns:pc="clr-namespace:AideDeJeu.Views.PlayerCharacter"
xmlns:library="clr-namespace:AideDeJeu.Views.Library"
x:Class="AideDeJeu.Views.MainShell"> x:Class="AideDeJeu.Views.MainShell">
<Shell.FlyoutHeader> <FlyoutItem Title="Accueil">
<ListView> <ShellContent>
<local:MainPage/>
</ListView> </ShellContent>
</Shell.FlyoutHeader> </FlyoutItem>
<FlyoutItem Title="Personnages" FlyoutIcon="battle_axe.png">
<ShellContent>
<pc:PlayerCharacterEditorPage/>
</ShellContent>
</FlyoutItem>
<FlyoutItem Title="Dés" FlyoutIcon="d20.png">
<ShellContent>
<local:DicesPage/>
</ShellContent>
</FlyoutItem>
<FlyoutItem Title="Bibliothèque" FlyoutIcon="spell_book.png">
<ShellContent>
<library:ItemDetailPage/>
</ShellContent>
</FlyoutItem>
<FlyoutItem Title="Héros &amp; Dragons" Shell.BackgroundColor="Blue">
<ShellContent>
<library:ItemDetailPage/>
</ShellContent>
</FlyoutItem>
<FlyoutItem Title="Manuel des règles">
<ShellContent>
<library:ItemDetailPage/>
</ShellContent>
</FlyoutItem>
<FlyoutItem Title="Cadre de campagne">
<ShellContent>
<library:ItemDetailPage/>
</ShellContent>
</FlyoutItem>
<FlyoutItem Title="Créatures et oppositions">
<ShellContent>
<library:ItemDetailPage/>
</ShellContent>
</FlyoutItem>
<FlyoutItem Title="Les Cinq Royaumes">
<ShellContent>
<library:ItemDetailPage/>
</ShellContent>
</FlyoutItem>
<FlyoutItem Title="Livre des monstres">
<ShellContent>
<library:ItemDetailPage/>
</ShellContent>
</FlyoutItem>
<FlyoutItem Title="Monstrueusement Mignons" Shell.BackgroundColor="Blue">
<ShellContent>
<library:ItemDetailPage/>
</ShellContent>
</FlyoutItem>
<FlyoutItem Title="Joan of Arc" Shell.BackgroundColor="Blue">
<ShellContent>
<library:ItemDetailPage/>
</ShellContent>
</FlyoutItem>
<FlyoutItem Title="SRD" Shell.BackgroundColor="Blue">
<ShellContent>
<library:ItemDetailPage/>
</ShellContent>
</FlyoutItem>
<FlyoutItem Title="A propos de..." FlyoutIcon="wooden_sign.png">
<ShellContent>
<local:AboutPage/>
</ShellContent>
</FlyoutItem>
<ShellItem> <ShellItem>
<ShellSection> <ShellSection>
<ShellContent Title="Main" ContentTemplate="{DataTemplate local:MainPage}"> <ShellContent>
<local:MainPage/>
</ShellContent> </ShellContent>
</ShellSection> </ShellSection>
</ShellItem> </ShellItem>