How do you switch pages in Xamarin.Forms?

后端 未结 13 1241
我在风中等你
我在风中等你 2020-12-02 07:08

How do you switch between pages in Xamarin Forms?

My main page is a ContentPage and I don\'t want to switch to something like a Tabbed Page.

I\'ve been abl

13条回答
  •  Happy的楠姐
    2020-12-02 07:44

    XAML page add this

    
                
    
       
    

    on the CS page

     async void Handle_Activated(object sender, System.EventArgs e)
            {
                await App.Navigator.PushAsync(new PAGE());
            }
    

提交回复
热议问题