如何JFrame
在 Mac 上的 Eclipse 中创建一个窗口,该窗口具有使窗口全屏显示的图标,就像右上角大多数窗口上的双箭头图标一样?
问问题
320 次
1 回答
4
看一眼
- OSX Lion 上 Java 应用程序的全屏功能
- 和Java Runtime System Properties,可能有兴趣
- 或者如果这些是您想要的错误功能,我如何在 OSX 上使用 Java 进行全屏显示
更新
幸运的是你JFrame
通过......Window
Frame
public class TestMacFullScreen {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
JFrame frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(200, 200);
frame.setLocationRelativeTo(null);
frame.setLayout(new BorderLayout());
JLabel label = new JLabel("Look ma, no hands");
frame.add(label);
enableOSXFullscreen(frame);
frame.setVisible(true);
}
});
}
public static void enableOSXFullscreen(Window window) {
try {
Class util = Class.forName("com.apple.eawt.FullScreenUtilities");
Class params[] = new Class[]{Window.class, Boolean.TYPE};
Method method = util.getMethod("setWindowCanFullScreen", params);
method.invoke(util, window, true);
} catch (ClassNotFoundException exp) {
exp.printStackTrace();
} catch (Exception exp) {
exp.printStackTrace();
}
}
}
于 2012-10-05T19:03:09.240 回答