Silverlight 应用程序中的框架导航
我有一个用于菜单的 WebRibbon 控件。我在页面上有一个 TabControl 来保存所有内容。当您单击菜单时,我会创建一个 TabItem,将框架添加到选项卡项目,导航到该框架中的特定 xaml 页面,然后将该框架添加到选项卡项目。对于第一页来说效果很好。 xaml 页面的内容在框架中正确显示。当我导航到第二页和第三页时,问题就出现了。所有选项卡项上的所有框架都导航到最后选定的菜单项对应的 xaml 内容。
I have a WebRibbon control for a menu. I have a TabControl on the page that holds all content. As you click on a menu I create a TabItem, add a frame to the tab item, navigate to a specific xaml page in that frame and then add the frame to the tab item. It works fine for the first page. The content of the xaml page displays correctly in the frame. A problem arise as soon as I navigate to a second and third page. All the frames on all the tab items navigate to the last selected menu items corresponding xaml content.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
frame1.JournalOwnership = JournalOwnership.OwnsJournal;
这解决了我的问题...
frame1.JournalOwnership = JournalOwnership.OwnsJournal;
This solved my problem...