Quantcast
Channel: WP7 – Developer Publish
Viewing all articles
Browse latest Browse all 51

How to Change the Start Page of the Xamarin Forms Application ?

$
0
0
By default , when you create a new Xamarin Forms application in Visual Studio , it creates a MainPage.xaml in the portable (PCL) project and this is set as the start page of your android and iOS application that is part of the solution. How to Change the Start Page of the Xamarin Forms Application ? You can change the start page of the Xamarin Forms application by changing the MainPage property App class defined in the App.xaml.cs file in the shared project. public App() { InitializeComponent(); MainPage = new MainPage(); } Assume that the new page name is FirstPage.Xaml

Viewing all articles
Browse latest Browse all 51

Trending Articles