From 15165f8897310140b5847206877479e88186cd33 Mon Sep 17 00:00:00 2001 From: cldupland Date: Wed, 13 Nov 2019 12:00:07 +0100 Subject: [PATCH] =?UTF-8?q?Cr=C3=A9ation=20de=20la=20page=20permettant=20d?= =?UTF-8?q?e=20selectionner=20les=20joueurs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TheGameExtreme/view/GamePreparationPage.xaml | 7 +++++++ TheGameExtreme/view/GamePreparationPage.xaml.cs | 16 ++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 TheGameExtreme/view/GamePreparationPage.xaml create mode 100644 TheGameExtreme/view/GamePreparationPage.xaml.cs diff --git a/TheGameExtreme/view/GamePreparationPage.xaml b/TheGameExtreme/view/GamePreparationPage.xaml new file mode 100644 index 0000000..a516022 --- /dev/null +++ b/TheGameExtreme/view/GamePreparationPage.xaml @@ -0,0 +1,7 @@ + + + + diff --git a/TheGameExtreme/view/GamePreparationPage.xaml.cs b/TheGameExtreme/view/GamePreparationPage.xaml.cs new file mode 100644 index 0000000..b4b4880 --- /dev/null +++ b/TheGameExtreme/view/GamePreparationPage.xaml.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; + +using Xamarin.Forms; + +namespace TheGameExtreme.view +{ + public partial class GamePreparationPage : ContentPage + { + public GamePreparationPage() + { + InitializeComponent(); + NavigationPage.SetHasNavigationBar(this, false); + } + } +}