Template 10 Multiple Windows

纵饮孤独 提交于 2019-12-01 12:43:37

You could use ProjectionManager for this. There's also a useful sample on MSDN. It basically allows you to open a secondary "window" just like PowerPoint does in the "presenter's view" if you have an extended desktop set up in Windows.

The secondary window then requires its own Frame and runs in a separate UI thread. This makes communication between your primary and secondary window a bit more difficult as you have to switch threads. The best way to communicate is to use something like an PubSubEvents of Prism (or any other framework).

I don't think Template10 supports this, but I wouldn't abandon it because of that. I'm not aware of any framework that does this out of the box, so you have to piece it together yourself.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!