全屏JFrame处于活动状态时,JFrame不显示

时间:2016-09-25 14:05:51

标签: java jframe fullscreen

我的全屏显示了JFrames代码:

GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().setFullScreenWindow(Splashscreen);

但是当我尝试显示具有特定尺寸的JFrame时,如果另一个JFrame处于全屏模式,它将无法显示。我该如何解决这个问题?

非全屏代码JFrame

public void AppmenuGUI() {

    JFrame Appmenu = new JFrame("Appmenu");
    Appmenu.setSize(300, 500);
    Appmenu.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Appmenu.setUndecorated(true);
    Container c = Appmenu.getContentPane();
    c.setBackground(Color.red);
    Appmenu.setLocation(0, ScreenSize.screenheight - 300 - 50);
    Appmenu.setVisible(true);
    Appmenu.toFront();
}

0 个答案:

没有答案