Categories
7.0 7.5 C#.NET HOW TO Microsoft SDK 7.1 Visual Studio Windows Phone

HOW TO change the StartPage in Windows Phone 7 Application in Visual Studio 2010 [C#.NET]

Expand theĀ Properties folder into Solution Explorer of the VisualĀ C# Windows Phone Application Project and Open the WMAppManifest.xml file.
Change the NavigationPage with you new StartPage filename (case sensitive).

<Tasks>
  <DefaultTask Name ="_default" NavigationPage="MainPage.xaml"/>
</Tasks>

Did my HOW TO help you? Leave a reply.

Categories
7.0 7.5 HOW TO Microsoft SDK 7.1 VB.NET Visual Studio Windows Phone

HOW TO change the StartPage of the Windows Phone 7 Application in Visual Studio 2010 [VB.NET]

Expand the My Project folder into Solution Explorer of the Visual Basic Windows Phone Application Project and Open the WMAppManifest.xml file.
Change the NavigationPage with you new StartPage filename (case sensitive).

[sourcecode language=”xml”]
<Tasks>
<DefaultTask Name ="_default" NavigationPage="MainPage.xaml"/>
</Tasks>
[/sourcecode]

Did my solution solve your problem?