通用 Windows Phone BottomAppBar 在恢复时消失
Universal Windows Phone BottomAppBar disappears on resume
在模拟器或 phone 中运行我的应用程序时,应用程序栏仅在应用程序第一次运行时显示。如果我关闭应用程序并返回,应用程序栏就会消失。重新安装或重置 phone 使其恢复运行一次。应用栏在 windows 中运行良好。我还没有实现任何 suspend/resume 事件代码。以下是应用程序条形码的示例。
<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>
AppBar 无法加载的原因是,如果我已经登录,我将导航到 OnViewLoaded 事件中的另一个页面。如果我删除此重定向,AppBar 每次都会加载。
在模拟器或 phone 中运行我的应用程序时,应用程序栏仅在应用程序第一次运行时显示。如果我关闭应用程序并返回,应用程序栏就会消失。重新安装或重置 phone 使其恢复运行一次。应用栏在 windows 中运行良好。我还没有实现任何 suspend/resume 事件代码。以下是应用程序条形码的示例。
<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>
AppBar 无法加载的原因是,如果我已经登录,我将导航到 OnViewLoaded 事件中的另一个页面。如果我删除此重定向,AppBar 每次都会加载。