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

22 lines
546 B

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));
}
2 years ago
}
}