Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Swing 中的快捷键更改窗口/框架的焦点。问题是,当焦点更改时,具有焦点的窗口不会移动到顶部,它会获得焦点但留在后面未聚焦的窗口Frame.requestFocus();。我用 . 获得焦点。还有其他方法可以用来聚焦吗?
Frame.requestFocus();
尝试使用Frame.toFront();
Frame.toFront();
Java 文档参考:toFront