我正在使用JOGL2和NativeWindow API来编写Java应用程序.隐藏鼠标光标的最佳/最简单方法是什么?
[编辑]
我没有使用JFrame创建窗口,而是使用JOGL的GLWindow. GLWindow没有setCursor方法.这还有可能吗?
解决方法:
正如你(thekidder)所说GLWindow没有那种能力所以我会在这样的框架(或JFrame)中使用GLCanvas(就像AlexR写的那样):
public static void main(String... args) {
// create the cursor
Toolkit t = Toolkit.getDefaultToolkit();
Image i = new BufferedImage(1, 1, BufferedImage.TYPE_INT_ARGB);
Cursor noCursor = t.createCustomCursor(i, new Point(0, 0), "none");
// try it with a normal frame
Frame f = new Frame();
// create the GLCanvas and add it to the frame
GLCanvas canvas = new GLCanvas();
frame.add(canvas);
f.setCursor(noCursor);
f.setSize(400, 200);
f.setVisible(true);
}