Gallery/Gallery.Share/AppShell.xaml.cs
2021-08-05 16:19:53 +08:00

24 lines
603 B
C#

using System;
using System.Collections.Generic;
using Gallery.ViewModels;
using Gallery.Views;
using Xamarin.Forms;
namespace Gallery
{
public partial class AppShell : Xamarin.Forms.Shell
{
public AppShell()
{
InitializeComponent();
Routing.RegisterRoute(nameof(ItemDetailPage), typeof(ItemDetailPage));
Routing.RegisterRoute(nameof(NewItemPage), typeof(NewItemPage));
}
private async void OnMenuItemClicked(object sender, EventArgs e)
{
await Shell.Current.GoToAsync("//LoginPage");
}
}
}