From e79a1f802acb9d10f662b211bfb466c178939bd3 Mon Sep 17 00:00:00 2001 From: anperederi Date: Wed, 3 May 2023 11:56:36 +0200 Subject: [PATCH] modif de l'app Shell pour le dataBinding --- src/Banquale/Banquale/App.xaml.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Banquale/Banquale/App.xaml.cs b/src/Banquale/Banquale/App.xaml.cs index 84b3fa7..30ad790 100644 --- a/src/Banquale/Banquale/App.xaml.cs +++ b/src/Banquale/Banquale/App.xaml.cs @@ -6,11 +6,17 @@ public partial class App : Application public Manager MyManager { get; private set; } = new Manager(); + + public App() { - InitializeComponent(); + + MyManager.Donnee(); + + InitializeComponent(); MainPage = new AppShell(); + } }