AppSAV/MauiApp1/AppShell.xaml.cs

14 lines
274 B
C#

using MauiApp1.Views;
namespace MauiApp1;
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
// Enregistrement des routes
Routing.RegisterRoute("fournisseurpage", typeof(FournisseurPage));
}
}