Swing 应用程序中的小点尾随光标
当我在应用程序框架上移动光标时,Swing 应用程序上有一个小点会一直跟踪光标。是什么原因造成的?
There is a small dot that keeps trailing the cursor on a Swing application as I move the cursor about over the application frame. What is causing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可以是一个空的工具提示吗?
是否为框架(或您悬停在其上的其他组件)实现了 getTooltip() 方法?如果您不需要工具提示,则应返回 null,而不是空字符串。
Can it be an empty tooltip?
Is the getTooltip() method implemented for the frame (or other component you are hovering over)? If you don't want the tooltip, you should return null, and not an empty String.