我想防止鼠标移出窗口。我之前在Minecraft上已经看到它的完成,您必须按esc键才能从窗口释放鼠标。
最佳答案
在Java中,可以使用Class Robot将鼠标光标放置在屏幕上的任何位置。您可以使用它在每次鼠标移动事件后将鼠标位置移回到中心。
//Moves mouse pointer to given screen coordinates.
void mouseMove(int x, int y)
我想防止鼠标移出窗口。我之前在Minecraft上已经看到它的完成,您必须按esc键才能从窗口释放鼠标。
最佳答案
在Java中,可以使用Class Robot将鼠标光标放置在屏幕上的任何位置。您可以使用它在每次鼠标移动事件后将鼠标位置移回到中心。
//Moves mouse pointer to given screen coordinates.
void mouseMove(int x, int y)