diff --git a/Sources/IHM/Desktop/CV_Planification.xaml b/Sources/IHM/Desktop/CV_Planification.xaml index d4de820..67b74db 100644 --- a/Sources/IHM/Desktop/CV_Planification.xaml +++ b/Sources/IHM/Desktop/CV_Planification.xaml @@ -9,6 +9,7 @@ + @@ -41,10 +42,32 @@ Style="{StaticResource WindowsButton}"/> + + + + + + + + + + + + + + + + + + + + + + - + - + diff --git a/Sources/IHM/Desktop/DashBoard.xaml b/Sources/IHM/Desktop/DashBoard.xaml index c4319f2..ae6342a 100644 --- a/Sources/IHM/Desktop/DashBoard.xaml +++ b/Sources/IHM/Desktop/DashBoard.xaml @@ -4,10 +4,10 @@ x:Class="IHM.Desktop.Dashboard" Title="Dashboard"> - - + + - + @@ -23,48 +23,29 @@ - - + - - - - - - - - - - - - - - + + + + + + + + - - + + - - - - - - - - - - - \ No newline at end of file diff --git a/Sources/IHM/Desktop/Echeancier.xaml b/Sources/IHM/Desktop/Echeancier.xaml index e05b158..1ec0f65 100644 --- a/Sources/IHM/Desktop/Echeancier.xaml +++ b/Sources/IHM/Desktop/Echeancier.xaml @@ -10,6 +10,7 @@ + @@ -45,9 +46,31 @@ Style="{StaticResource WindowsButton}"/> - + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/Sources/IHM/Desktop/Operations.xaml b/Sources/IHM/Desktop/Operations.xaml index 2de87fb..26e288c 100644 --- a/Sources/IHM/Desktop/Operations.xaml +++ b/Sources/IHM/Desktop/Operations.xaml @@ -10,6 +10,7 @@ + @@ -61,9 +62,29 @@ - + + + + + + + + + + + + + + + + + + + + + - + diff --git a/Sources/IHM/Desktop/Operations.xaml.cs b/Sources/IHM/Desktop/Operations.xaml.cs index e21ae44..7ff27f5 100644 --- a/Sources/IHM/Desktop/Operations.xaml.cs +++ b/Sources/IHM/Desktop/Operations.xaml.cs @@ -5,17 +5,27 @@ namespace IHM.Desktop; public partial class Operations : ContentView { - + List operations; public Manager Mgr => (App.Current as App).Manager; public Operations() { InitializeComponent(); -/* - Mgr.LoadBanque(); - Mgr.LoadCompte();*/ + operations = new List(); + operations.Add(new("op", 33.44, DateTime.Now, MethodePayement.CB, TagOperation.Divers, false)); + operations.Add(new("course", 45.20, DateTime.Now, MethodePayement.CB, TagOperation.Divers, true)); + operations.Add(new("Orange", 50, DateTime.Now, MethodePayement.CB, TagOperation.Divers, true)); + operations.Add(new("EDF", 55.80, DateTime.Now, MethodePayement.Virement, TagOperation.Energie, true)); + operations.Add(new("EDF", 55.80, DateTime.Now, MethodePayement.Virement, TagOperation.Energie, true)); + operations.Add(new("EDF", 55.80, DateTime.Now, MethodePayement.Virement, TagOperation.Carburant, true)); - BindingContext = Mgr; + BindingContext = operations; + /* + + Mgr.LoadBanque(); + Mgr.LoadCompte();*/ +/* + BindingContext = Mgr;*/ } private void AddCredit_Clicked(object sender, EventArgs e)