JDialog Not Displaying When in Fullscreen Mode

前端 未结 4 1293
刺人心
刺人心 2021-01-15 14:40

I have an application that runs in fullscreen mode and has been working fine. Now I need to add a simple, undecorated dialog and I\'m running into trouble. If I run the ap

4条回答
  •  情书的邮戳
    2021-01-15 15:25

    Try to us this. Is not an exclusive full screen but it is close enough.

    setExtendedState(JFrame.MAXIMIZED_BOTH);
    setUndecorated(true);
    

提交回复
热议问题