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/AppShell.xaml.cs

29 lines
764 B

using IHM.Mobile;
using Model;
namespace IHM
{
public partial class AppShell : Shell
{
public Manager Mgr => (App.Current as App).Manager;
public AppShell()
{
InitializeComponent();
Routing.RegisterRoute("DashBoard", typeof(DashBoard));
Routing.RegisterRoute("Inscription", typeof(Inscription));
Routing.RegisterRoute("ForgetPassword", typeof(ForgetPassword));
Routing.RegisterRoute("ChangePassword", typeof(ChangePassword));
Routing.RegisterRoute("GestionBanques", typeof(GestionBanques));
Routing.RegisterRoute("AjoutBanques", typeof(AjoutBanques));
Routing.RegisterRoute("ErrorPage", typeof(ErrorPage));
}
2 years ago
}
}