更改Windows Phone 8.1应用程序的默认启动页面

时间:2014-09-09 23:52:28

标签: c# wpf xaml visual-studio-2013 windows-phone-8.1

我在通用应用解决方案的Windows Phone 8.1项目中创建了一个名为PivotPage.xaml的新基本页面。当我转到共享分区下的 App.xaml 时,我想将下面代码中的HubPage更改为新创建的数据透视页。但是VS拒绝将PivotPage识别为合法类型。两个页面的命名空间和类定义完全相同。

if (!rootFrame.Navigate(typeof(HubPage), e.Arguments))
{
    throw new Exception("Failed to create initial page");
}

如果还有其他方法可以更改默认页面,请告诉我。

1 个答案:

答案 0 :(得分:12)

试试这个

WP 8.1通用项目

  

- >添加新项目 - >空白页面    - >将其命名为MyPivotPage.xaml


MyPivotPage.xaml

<Page
    x:Class="YOUR_NAMESPACE.MyPivotPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:YOUR_NAMESPACE"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

    <Grid>
        <Pivot Title="MY APPLICATION">
            <!--Pivot item one-->
            <PivotItem Header="item1">
                <Grid/>
            </PivotItem>

            <!--Pivot item two-->
            <PivotItem Header="item2">
                <Grid/>
            </PivotItem>
        </Pivot>
    </Grid>
</Page>

将“YOUR_NAMESPACE”更改为您的命名空间:)

然后在App.xaml.cs

#if WINDOWS_PHONE_APP
if (!rootFrame.Navigate(typeof(MyPivotPage), e.Arguments))
{
    throw new Exception("Failed to create initial page");
}
#endif
#if WINDOWS_APP
if (!rootFrame.Navigate(typeof(MainPage), e.Arguments))
{
    throw new Exception("Failed to create initial page");
}       
#endif

清洁您的解决方案
将WP 8.1 Universal设置为默认启动项目
部署到您的设备