Windows Phone - 透视和父页面
我在 PPhoneAppplicationPage 内有一个 PivotControl。理想情况下,我希望始终显示页面中的应用程序栏项目,并将它们与 UserControl 中定义的项目合并,该项目显示在每个 PivotItem 中。我尝试了一些不同的东西,但似乎只显示外部(PhoneApplicationPage)应用栏。
I have a PivotControl inside a PPhoneAppplicationPage. Ideally I'd like to show the appbar items from the page at all times, and merge them with items defined in the UserControl which shows in each PivotItem. I've tried a few different things, but only the outer (the PhoneApplicationPage) appbar seems to show.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
AppBar 项目由页面拥有,而不是 PivotItems。但您可以根据需要动态添加/删除:
您的页面有一个 ApplicationBar 属性,其中有一个 Buttons 和一个 MenuItems 属性。每当选择新的 PivotItem 时,都可以根据需要以编程方式添加和删除按钮/菜单项。
The AppBar items are owned by the Page, not the PivotItems. But you can add/remove then dynamically as needed:
Your Page has an ApplicationBar property which has a Buttons and a MenuItems property. Add and remove buttons/menuitems there programmatically as needed whenever a new PivotItem gets selected.
您可以为数据透视中的每个数据透视项使用不同的应用栏。尝试下面的代码
You can use different appbars for each pivot item in a pivot. try the code below