How do I change the startup page on a WP7 Silverlight app?

后端 未结 1 1163
一整个雨季
一整个雨季 2020-12-23 20:24

I have added a new XAML page to my WP7 app and I need the application to startup on this new page. How do I do that ?

I cannot find MainPage (which is the current /

相关标签:
1条回答
  • 2020-12-23 20:49

    In WMAppManifest.xml you'll find the following.

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

    Change as appropriate.

    0 讨论(0)
提交回复
热议问题