|
|
@ -12,23 +12,27 @@ namespace IHM
|
|
|
|
{
|
|
|
|
{
|
|
|
|
public class Navigator : INotifyPropertyChanged
|
|
|
|
public class Navigator : INotifyPropertyChanged
|
|
|
|
{
|
|
|
|
{
|
|
|
|
public const string PART_OPERATION = "Opération";
|
|
|
|
|
|
|
|
public const string PART_PLANNIFICATION = "Plannification";
|
|
|
|
|
|
|
|
public const string PART_MAIN = "Main";
|
|
|
|
public const string PART_MAIN = "Main";
|
|
|
|
public const string PART_CONNEXION = "Connexion";
|
|
|
|
public const string PART_CONNEXION = "Connexion";
|
|
|
|
public const string PART_INSCRIPTION = "Inscription";
|
|
|
|
public const string PART_INSCRIPTION = "Inscription";
|
|
|
|
public const string PART_MODIFSOLDE = "ModifSolde";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public const string PART_COMPTE = "Compte";
|
|
|
|
public const string PART_COMPTE = "Compte";
|
|
|
|
public const string PART_AJOUTER_BANQUE = "Ajouter une banque";
|
|
|
|
public const string PART_AJOUTER_BANQUE = "Ajouter une banque";
|
|
|
|
public const string PART_SUPPRIMER_BANQUE = "Supprimer une banque";
|
|
|
|
public const string PART_SUPPRIMER_BANQUE = "Supprimer une banque";
|
|
|
|
public const string PART_AJOUTER_COMPTE = "Ajouter une compte";
|
|
|
|
public const string PART_AJOUTER_COMPTE = "Ajouter une compte";
|
|
|
|
public const string PART_SUPPRIMER_COMPTE = "Supprimer un compte";
|
|
|
|
public const string PART_SUPPRIMER_COMPTE = "Supprimer un compte";
|
|
|
|
|
|
|
|
public const string PART_MODIFSOLDE = "ModifSolde";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public const string PART_OPERATION = "Opération";
|
|
|
|
|
|
|
|
|
|
|
|
public const string PART_ECHEANCIER = "Echéancier";
|
|
|
|
public const string PART_ECHEANCIER = "Echéancier";
|
|
|
|
public const string PART_AJOUTER_ECHEANCE = "Enregistrer une échéance";
|
|
|
|
public const string PART_AJOUTER_ECHEANCE = "Enregistrer une échéance";
|
|
|
|
public const string PART_SUPPRIMER_ECHEANCE = "Supprimer une échéance";
|
|
|
|
public const string PART_SUPPRIMER_ECHEANCE = "Supprimer une échéance";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public const string PART_PLANIFICATION = "Planification";
|
|
|
|
|
|
|
|
public const string PART_AJOUTER_PLANIFICATION = "Ajouter une planification";
|
|
|
|
|
|
|
|
public const string PART_SUPPRIMER_PLANIFICATION = "Supprimer une planification";
|
|
|
|
|
|
|
|
|
|
|
|
public ReadOnlyDictionary<string, Func<UserControl>> WindowPart { get; private set; }
|
|
|
|
public ReadOnlyDictionary<string, Func<UserControl>> WindowPart { get; private set; }
|
|
|
|
|
|
|
|
|
|
|
|
Dictionary<string, Func<UserControl>> windowPart { get; set; } = new Dictionary<string, Func<UserControl>>
|
|
|
|
Dictionary<string, Func<UserControl>> windowPart { get; set; } = new Dictionary<string, Func<UserControl>>
|
|
|
@ -38,7 +42,7 @@ namespace IHM
|
|
|
|
[PART_COMPTE] = () => new UCCompte(),
|
|
|
|
[PART_COMPTE] = () => new UCCompte(),
|
|
|
|
[PART_OPERATION] = () => new UCOperation(),
|
|
|
|
[PART_OPERATION] = () => new UCOperation(),
|
|
|
|
[PART_ECHEANCIER] = () => new UCEcheancier(),
|
|
|
|
[PART_ECHEANCIER] = () => new UCEcheancier(),
|
|
|
|
[PART_PLANNIFICATION] = () => new UCPlannification(),
|
|
|
|
[PART_PLANIFICATION] = () => new UCPlannification(),
|
|
|
|
[PART_INSCRIPTION] = () => new UCInscription(),
|
|
|
|
[PART_INSCRIPTION] = () => new UCInscription(),
|
|
|
|
[PART_MODIFSOLDE] = () => new UCModifSolde(),
|
|
|
|
[PART_MODIFSOLDE] = () => new UCModifSolde(),
|
|
|
|
[PART_AJOUTER_BANQUE] = () => new UCAjouterBanque(),
|
|
|
|
[PART_AJOUTER_BANQUE] = () => new UCAjouterBanque(),
|
|
|
@ -47,6 +51,8 @@ namespace IHM
|
|
|
|
[PART_SUPPRIMER_COMPTE] = () => new UCSupprimerCompte(),
|
|
|
|
[PART_SUPPRIMER_COMPTE] = () => new UCSupprimerCompte(),
|
|
|
|
[PART_AJOUTER_ECHEANCE] = () => new UCAjouterEcheance(),
|
|
|
|
[PART_AJOUTER_ECHEANCE] = () => new UCAjouterEcheance(),
|
|
|
|
[PART_SUPPRIMER_ECHEANCE] = () => new UCSupprimerEcheance(),
|
|
|
|
[PART_SUPPRIMER_ECHEANCE] = () => new UCSupprimerEcheance(),
|
|
|
|
|
|
|
|
[PART_AJOUTER_PLANIFICATION] = () => new UCAjouterPlanification(),
|
|
|
|
|
|
|
|
[PART_SUPPRIMER_PLANIFICATION] = () => new UCSupprimerPlanification(),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|