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.
32 lines
630 B
32 lines
630 B
using Microsoft.Maui.Graphics.Text;
|
|
|
|
namespace IHM.Desktop;
|
|
|
|
public partial class Dashboard : ContentPage
|
|
{
|
|
public Dashboard()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void Button_planification(object sender, EventArgs e)
|
|
{
|
|
Navigation.PushAsync(new Planification());
|
|
}
|
|
|
|
private void Button_echeancier(object sender, EventArgs e)
|
|
{
|
|
Navigation.PushAsync(new Echeancier());
|
|
}
|
|
|
|
private void Button_operation(object sender, EventArgs e)
|
|
{
|
|
Navigation.PushAsync(new Operations());
|
|
}
|
|
|
|
private void Button_compte(object sender, EventArgs e)
|
|
{
|
|
Navigation.PushAsync(new Compte());
|
|
}
|
|
|
|
} |