diff --git a/Sources/Data/Data.csproj b/Sources/Data/Data.csproj
index 8ed68db..fa39877 100644
--- a/Sources/Data/Data.csproj
+++ b/Sources/Data/Data.csproj
@@ -20,6 +20,9 @@
+
+
+
diff --git a/Sources/IHM/Desktop/CV_DeletePlanification.xaml b/Sources/IHM/Desktop/CV_DeletePlanification.xaml
index fb5e2be..8ca3fc5 100644
--- a/Sources/IHM/Desktop/CV_DeletePlanification.xaml
+++ b/Sources/IHM/Desktop/CV_DeletePlanification.xaml
@@ -1,6 +1,7 @@
@@ -23,15 +24,16 @@
-
-
-
-
+
+
-
-
+
+
+
+
+
diff --git a/Sources/IHM/Desktop/CV_EnregistrerEcheance.xaml b/Sources/IHM/Desktop/CV_EnregistrerEcheance.xaml
index c66afe2..b52bc39 100644
--- a/Sources/IHM/Desktop/CV_EnregistrerEcheance.xaml
+++ b/Sources/IHM/Desktop/CV_EnregistrerEcheance.xaml
@@ -1,6 +1,7 @@
@@ -21,21 +22,17 @@
-
-
-
-
-
+
+
-
-
-
-
+
+
+
diff --git a/Sources/IHM/Desktop/CV_Statistiques.xaml b/Sources/IHM/Desktop/CV_Statistiques.xaml
index 22b9599..e7ca819 100644
--- a/Sources/IHM/Desktop/CV_Statistiques.xaml
+++ b/Sources/IHM/Desktop/CV_Statistiques.xaml
@@ -1,6 +1,8 @@
@@ -45,11 +47,83 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Sources/IHM/Desktop/CV_Statistiques.xaml.cs b/Sources/IHM/Desktop/CV_Statistiques.xaml.cs
index 171fd80..857614d 100644
--- a/Sources/IHM/Desktop/CV_Statistiques.xaml.cs
+++ b/Sources/IHM/Desktop/CV_Statistiques.xaml.cs
@@ -1,9 +1,24 @@
namespace IHM.Desktop;
+using Model;
public partial class CV_Statistiques : ContentView
{
+ public List operations;
public CV_Statistiques()
{
InitializeComponent();
- }
+
+ List operations;
+
+
+ // Temporaire pour établir le binding de la vue
+ 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));
+
+ BindingContext = operations;
+ }
}
\ No newline at end of file
diff --git a/Sources/IHM/Desktop/CV_SupprimerEcheance.xaml b/Sources/IHM/Desktop/CV_SupprimerEcheance.xaml
index 930b97a..7c518ee 100644
--- a/Sources/IHM/Desktop/CV_SupprimerEcheance.xaml
+++ b/Sources/IHM/Desktop/CV_SupprimerEcheance.xaml
@@ -1,6 +1,7 @@
@@ -20,19 +21,15 @@
+
+
+
-
-
-
-
-
+
-
-
-
-
+
diff --git a/Sources/IHM/Desktop/CV_retirer.xaml b/Sources/IHM/Desktop/CV_retirer.xaml
index 8192140..25c8988 100644
--- a/Sources/IHM/Desktop/CV_retirer.xaml
+++ b/Sources/IHM/Desktop/CV_retirer.xaml
@@ -1,6 +1,7 @@
@@ -23,16 +24,12 @@
-
-
-
-
-
-
-
-
+
+
+
+
diff --git a/Sources/IHM/Desktop/CV_supprimerOp.xaml b/Sources/IHM/Desktop/CV_supprimerOp.xaml
index 2b218cd..9d61df9 100644
--- a/Sources/IHM/Desktop/CV_supprimerOp.xaml
+++ b/Sources/IHM/Desktop/CV_supprimerOp.xaml
@@ -1,6 +1,7 @@
@@ -20,19 +21,13 @@
-
-
+
-
-
-
-
+
+
+
-
-
-
-
diff --git a/Sources/IHM/IHM.csproj b/Sources/IHM/IHM.csproj
index fb7db2e..ee26597 100644
--- a/Sources/IHM/IHM.csproj
+++ b/Sources/IHM/IHM.csproj
@@ -104,6 +104,9 @@
+
+
+
diff --git a/Sources/IHM/MauiProgram.cs b/Sources/IHM/MauiProgram.cs
index 894d33c..0df86aa 100644
--- a/Sources/IHM/MauiProgram.cs
+++ b/Sources/IHM/MauiProgram.cs
@@ -1,4 +1,16 @@
-namespace IHM
+using Syncfusion.Maui.Core.Hosting;
+
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using Microsoft.Maui.Controls.Compatibility;
+using Microsoft.Maui.Controls.Hosting;
+using Microsoft.Maui.Controls.Xaml;
+using Syncfusion.Maui.Core.Hosting;
+
+
+
+
+namespace IHM
{
public static class MauiProgram
{
@@ -7,6 +19,8 @@
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp()
+ .ConfigureSyncfusionCore()
+
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
diff --git a/Sources/Modele/Model.csproj b/Sources/Modele/Model.csproj
index b25d8ac..57250cb 100644
--- a/Sources/Modele/Model.csproj
+++ b/Sources/Modele/Model.csproj
@@ -19,6 +19,9 @@
+
+
+
\ No newline at end of file
diff --git a/Sources/TestFonctionnel/TestFonctionnel.csproj b/Sources/TestFonctionnel/TestFonctionnel.csproj
index b828247..5da3895 100644
--- a/Sources/TestFonctionnel/TestFonctionnel.csproj
+++ b/Sources/TestFonctionnel/TestFonctionnel.csproj
@@ -9,6 +9,9 @@
+
+
+
diff --git a/Sources/TestsUnitaires/TestsUnitaires.csproj b/Sources/TestsUnitaires/TestsUnitaires.csproj
index 581f679..e59e643 100644
--- a/Sources/TestsUnitaires/TestsUnitaires.csproj
+++ b/Sources/TestsUnitaires/TestsUnitaires.csproj
@@ -11,6 +11,9 @@
+
+
+
runtime; build; native; contentfiles; analyzers; buildtransitive