How can I remove just the Maximize button from a JFrame? August 28, 2023 by Tarik Make it not resizable: frame.setResizable(false); You will still have the minimize and close buttons.