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

28 lines
992 B

using MangaMap.Views;
namespace MangaMap;
/// <summary>
/// Classe représentant le Shell.
/// </summary>
public partial class AppShell : Shell
{
/// <summary>
/// Constructeur du shell de l'application.
/// </summary>
public AppShell()
{
InitializeComponent();
// Enregistrement des routes pour les pages de l'application
Routing.RegisterRoute("homePagedetails", typeof(homePage));
Routing.RegisterRoute("inscriptionPagedetails", typeof(signUpPage));
Routing.RegisterRoute("connexionPagedetails", typeof(loginPage));
Routing.RegisterRoute("settingsPagedetails", typeof(settingsPage));
Routing.RegisterRoute("listPagedetails", typeof(listPage));
Routing.RegisterRoute("fichePagedetails", typeof(ficheAnime));
Routing.RegisterRoute("connexionAdminPagedetails", typeof(loginAdminPage));
Routing.RegisterRoute("createPagedetails", typeof(createOeuvre));
}
}