如何拥有具有多个显示器的多点触控应用程序?
我的应用程序是多点触控的,可以在单个显示器上正常运行,或者在 2 个显示器上但一次 1 个显示器上运行良好。 但是,当我在两台显示器上尝试多点触控时,触摸仅在我触摸的第一个显示器上起作用,而第二个显示器什么也接收不到...就像第一个显示器获得所有触摸设备的焦点一样...
有没有办法每个显示器同时有 1 个手指吗?
我使用的是 Win7 64 位、.NET 4.0
2 个双触摸显示器:NEC MultiSync LCD 2490WUXi²
My app is multitouch and works fine on a single monitor, or with 2 monitors but 1 at a time.
But when I tried the multitouch on two monitors, the touch only works on the first that I touch, and the second monitor receive nothing... like if the first monitor get the focus of all touch device...
Is there a way to have 1 finger in each monitor at the same time?
I'm on Win7 64bits, .NET 4.0
2 dual touch monitors : NEC MultiSync LCD 2490WUXi²
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后,同时在多台显示器上进行多点触控只有两种可能性:
1) 使用 Mosaic (NVidia) 或 Eyefinity (ATI) 模拟所有显示器都只是 1 个显示器
2) 自己编写驱动程序,使其完全按照您的要求进行操作想
Finally, there is only 2 possibilities to do multitouch on multiple monitors at the same time:
1) Use Mosaic (NVidia) or Eyefinity (ATI) to simulate that all monitors are only 1 monitor
2) Code the driver yourself to do exactly what you want