This question already has answers here:
JFrame in full screen Java
(13个回答)
2年前关闭。
我一直在使用以下代码将屏幕手动设置为显示器的像素尺寸:
我想找到一种在任何监视器上将JFrame设置为全屏的方法,但是考虑到我的“游戏”类包含其他方法和变量,因此无法从此启动器代码中将其删除。
(13个回答)
2年前关闭。
我一直在使用以下代码将屏幕手动设置为显示器的像素尺寸:
public static void main(String[] args) {
Game game = new Game("ColoursAndShapes", 1920, 970);
game.start();
}
我想找到一种在任何监视器上将JFrame设置为全屏的方法,但是考虑到我的“游戏”类包含其他方法和变量,因此无法从此启动器代码中将其删除。
最佳答案
JFrame JFrame = new JFrame();
frame.setExtendedState(JFrame.MAXIMIZED_BOTH); frame.setUndecorated(true);
frame.setVisible(true);
关于java - 如何将JFrame设置为全屏,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45722445/
10-13 06:25