forked from b-Aouabe/MauiApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppShell.xaml.cs
More file actions
20 lines (18 loc) · 747 Bytes
/
Copy pathAppShell.xaml.cs
File metadata and controls
20 lines (18 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using MauiApp1.Views;
namespace MauiApp1
{
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
Routing.RegisterRoute(nameof(RegisterPage),typeof(RegisterPage));
//Routing.RegisterRoute(nameof(LoginPage),typeof(LoginPage));
Routing.RegisterRoute(nameof(DefaultPage),typeof(DefaultPage));
Routing.RegisterRoute(nameof(AddStudentPage),typeof(AddStudentPage));
Routing.RegisterRoute(nameof(DetailsPage),typeof(DetailsPage));
Routing.RegisterRoute(nameof(SearchStudentPage),typeof(SearchStudentPage));
Routing.RegisterRoute(nameof(UpdateAbsencePage),typeof(UpdateAbsencePage));
}
}
}