You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ConsEco/Sources/IHM/Desktop/Operations.xaml.cs

42 lines
772 B

using Model;
namespace IHM.Desktop;
public partial class Operations : ContentView
{
public Manager Mgr => (App.Current as App).Manager;
public Operations()
{
InitializeComponent();
/*
Mgr.LoadBanque();
Mgr.LoadCompte();*/
BindingContext = Mgr;
}
private void AddCredit_Clicked(object sender, EventArgs e)
{
windowAjout.Content = new CV_credit();
}
private void RetireOperation_Clicked(object sender, EventArgs e)
{
windowAjout.Content = new CV_retirer();
}
private void AddDebit_Clicked(object sender, EventArgs e)
{
windowAjout.Content = new CV_debit();
}
private void DelOperation_Clicked(object sender, EventArgs e)
{
windowAjout.Content = new CV_supprimerOp();
}
}