如何激活属于同一区域的多个视图?
我是 Silverlight 和 Prism 的新手。我正在开发一个仪表板应用程序。 这是我的问题。 我有 2 个区域:1. 登录 2. 主容器。
我的登录区域有一个视图,我的主容器有 2 个视图。
成功登录后,我需要停用登录区域或视图(以简单者为准),然后我需要激活主容器区域及其中的视图。 有没有办法可以同时激活“主容器”区域的视图? 任何帮助都会有用的。
提前致谢 萨米特
I'm new to Silverlight and Prism. I'm developing a dashboard application.
Here's my question.
I've 2 regions: 1. Login 2. Maincontainer.
My Login region has one view and my maincontainer has 2 views.
After a successful login, i need to deactivate the Login region or view (whichever is simple) and then i need to activate the Maincontainer region and both the view within it.
Is there a way i can activate both the view of my "Maincontainer" region at the same time?
Any help would be useful.
Thanks in advance
Samit
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
激活区域中的视图意味着显示它。如果您想要一个区域可以同时显示多个视图,则必须使用 AllActiveRegion。要使用此类区域,您必须使用 ItemsControl(或从它继承的任何其他控件)作为区域宿主。
您可以找到更多信息 此处。
我希望这有帮助。
To activate a view in a region means to display it. If you want a region which can display more than one view at the same time, you must use an AllActiveRegion. To use regions of this kind you must use as a region host an ItemsControl (or any other that inherits from it).
You can find some more info here.
I hope this helps.