通用Windows Phone BottomAppBar在恢复时消失

时间:2015-01-08 19:11:00

标签: windows-phone-8.1 win-universal-app

在模拟器或手机中运行我的应用时,应用栏仅在第一次运行应用时显示。如果我关闭应用程序并返回,应用程序栏就会消失。重新安装或重置手机会将其重新启动一次。应用程序栏在Windows中正常工作。我还没有实现任何暂停/恢复事件代码。以下是应用条形码的示例。

<Page.BottomAppBar>
    <CommandBar>
        <CommandBar.SecondaryCommands>
            <AppBarButton x:Name="SettingsButton" Icon="Setting" Label="Settings" />
            <AppBarButton x:Name="Help" Icon="Help" Label="Help" />
            <AppBarButton x:Name="Forms" Icon="Bullets" Label="Forms" IsEnabled="False" />
            <AppBarButton x:Name="ManageTrip" Icon="Manage" Label="Manage Trip" />
        </CommandBar.SecondaryCommands>
        <AppBarButton x:Name="Sync" Icon="Sync" Label="Sync" />
        <AppBarButton x:Name="FilterSettings" Icon="Filter" Label="Filter" />
        <AppBarButton x:Name="AddTransaction" Icon="Add" Label="Add" />
        <AppBarButton x:Name="EditTransaction" Icon="OpenFile" Label="Open" />
    </CommandBar>
</Page.BottomAppBar>

1 个答案:

答案 0 :(得分:0)

AppBar无法加载的原因是,如果我已经登录,我将导航到OnViewLoaded事件中的另一个页面。如果我删除了此重定向,则每次都会加载AppBar。