From 97ff38934b3fe59a0d92a72cc78f482aca1c82e5 Mon Sep 17 00:00:00 2001 From: cldupland Date: Thu, 14 Nov 2019 11:59:28 +0100 Subject: [PATCH] Mise en place du picker en cours --- TheGameExtreme/TheGameExtreme.csproj | 2 +- TheGameExtreme/view/GamePreparationPage.xaml | 4 +++- TheGameExtreme/view/GamePreparationPage.xaml.cs | 6 ++++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/TheGameExtreme/TheGameExtreme.csproj b/TheGameExtreme/TheGameExtreme.csproj index 93af40a..7bc14c0 100644 --- a/TheGameExtreme/TheGameExtreme.csproj +++ b/TheGameExtreme/TheGameExtreme.csproj @@ -7,7 +7,7 @@ - + diff --git a/TheGameExtreme/view/GamePreparationPage.xaml b/TheGameExtreme/view/GamePreparationPage.xaml index 3a7aa28..81c8fc7 100644 --- a/TheGameExtreme/view/GamePreparationPage.xaml +++ b/TheGameExtreme/view/GamePreparationPage.xaml @@ -42,7 +42,9 @@ - + listNbPlayer = new List(); public GamePreparationPage() @@ -26,6 +27,11 @@ namespace TheGameExtreme.view NavigationPage.SetHasNavigationBar(this, false); Instruction.SetBinding(Label.TextProperty, new Binding("InstructionText", source: this)); InstructionText = AppRessource.StrPlayerSelection; + listNbPlayer.Add(1); + listNbPlayer.Add(2); + listNbPlayer.Add(3); + listNbPlayer.Add(4); + listNbPlayer.Add(5); } private async void Back(object sender, EventArgs e)