如何使 Swing 应用程序可触摸?
我们开发了一个运行在PC上的Swing GUI系统,老板希望它也能运行在专门的平板电脑上。 有谁知道我们还能做些什么来实现这一目标? 如何让Swing GUI支持触摸操作?
当然,平板电脑的触摸支持驱动程序是必需的。
We developed a Swing GUI system running on PC, and the boss wants it to run on a special tablet PC too. Does anyone know what else we can do to achieve it? How to make a Swing GUI support touch operation?
The touch-support driver of the tablet PC is necessary, of course.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数触摸屏将触摸事件转换为鼠标事件。 如果您也这样做,您可以简单地使用 java.awt.event.MouseListener。
Most touch screens convert touches to mouse events. If yours does so as well you can simply use java.awt.event.MouseListener.