+1 vote
in C Sharp by
How will you navigate from one page to another?

1 Answer

0 votes
by

On some button click event of First Page, we can call the following method, which will navigate to the second page:

await Navigation.PushAsync (new MySecondPageXaml (), true);

We have to use the "Navigation" property which is available under ContentPage class (XAML Page's code behind). So this navigation can be written in the Page's code behind file.

Related questions

+1 vote
asked Aug 20, 2020 in C Sharp by Hodge
0 votes
+1 vote
asked Aug 20, 2020 in C Sharp by RShastri
...