-3

I would like to set my frame automatically to fullscreen. Is this possible, and if yes how?

Thanks

1 Answers1

1

If you want to maximize your frame use:

frame.setExtendedState(Frame.MAXIMIZED_BOTH);

If you want the frame to have no decoration (truly fullscreen) use this aswell:

frame.setUndecorated(true);