Java改变光标
有没有什么办法可以改变Java中的光标,而不仅仅是一个JComponent?
我需要这个,因为我希望当鼠标离开 JFrame 时光标发生变化,这样后台就没有 JComponent 了。
感谢您的帮助!
埃萨尼特
is there any way to change the cursor in Java at all, not just for one JComponent?
I need this because I want the cursor to change, when your mouse leaves the JFrame, so there is no JComponent in the background.
Thanks for your help!
esanits
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 JFrame 或顶级窗口上设置 光标 应该可以解决问题
Setting cursor on your JFrame or top level window should do the trick
如果您想更改系统光标(即当光标位于您的应用程序之外时),这是您的系统的责任。我认为你不能以独立于平台的方式从 Java 更改系统设置。
If you want to change the system cursor (i.e. when the cursor is outside your application), this is the responsibility of your system. I don't think you can change the system's settings from Java in a platform-independent way.