full screen in jframe

Solutions on MaxInterview for full screen in jframe by the best coders in the world

showing results for - "full screen in jframe"
Hal
23 Jun 2020
1// Getting fullscreen **effect** by extending the frame either direction.
2frame.setExtendedState(JFrame.MAXIMIZED_BOTH); 
3frame.setUndecorated(true);