不同用户的不同屏幕
我正在编写一个应用程序,并一直在尝试找到一种为不同用户提供多个屏幕的方法。
一名用户将看到并操作控制屏幕,另一名用户将看到输出。到目前为止,我一直在使用克隆屏幕,以便两个用户都可以看到控制屏幕。
输出基本上连接到投影仪。
有什么想法吗?
I'm writing an application and have been trying to find a way to have multiple screens for different users.
One user would see and operate the control screen and the other would see the output. Up until now I've been using cloned screens so both users can see the control screen.
The output would basically be hooked up to a projector.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要克隆屏幕,而是扩展桌面,以便您可以将窗口从笔记本电脑屏幕拖到投影仪上。
然后,您创建两个窗口 - 笔记本电脑上的控制器和投影仪上的显示屏。
当您想要显示显示窗口时,可以执行以下操作:
此代码将使您想要在投影仪中看到的显示窗口仅在投影仪中可见,而控制器将在笔记本电脑上。
Intead of cloning the screen, extend the desktop so that you can drag windows from your laptop screen over to the projector.
You then create two windows - the controller on the laptop and the display on the projector.
When you want to show the display window, you can do the following:
This code will make the display window which you want to see in the projector visible only in the projector, while the controller will be on the laptop.