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.
36 lines
763 B
36 lines
763 B
namespace ex_ShellRoutes;
|
|
|
|
public partial class MainPage : ContentPage
|
|
{
|
|
public MainPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private async void GoToPage1(object sender, EventArgs e)
|
|
{
|
|
await Shell.Current.GoToAsync("page1");
|
|
}
|
|
|
|
private async void GoToAbsolutePage1(object sender, EventArgs e)
|
|
{
|
|
await Shell.Current.GoToAsync("//page1");
|
|
}
|
|
|
|
private async void GoToPage2(object sender, EventArgs e)
|
|
{
|
|
await Shell.Current.GoToAsync("page2");
|
|
}
|
|
|
|
private async void GoToPage1_2_2(object sender, EventArgs e)
|
|
{
|
|
await Shell.Current.GoToAsync("page1/page1_2/page1_2_2");
|
|
}
|
|
|
|
private async void GoToAbsolutePage1_2_2(object sender, EventArgs e)
|
|
{
|
|
await Shell.Current.GoToAsync("//page1/page1_2/page1_2_2");
|
|
}
|
|
}
|
|
|