如何从 JFrame 中仅删除最大化按钮?

2022-01-24 00:00:00 titlebar java swing jframe maximize-window

我有一个 JFrame并希望从中删除 最大化 按钮.

I have a JFrame and want to remove the maximize button from that.

我编写了下面的代码,但它从我的 JFrame 中删除了最大化、最小化和关闭.

I wrote the code below, but it removed maximize, minimize, and close from my JFrame.

JFrame frame = new JFrame();
frame.add(kart);
frame.setUndecorated(true);
frame.setVisible(true);
frame.setSize(400, 400);

我只想从 JFrame 中删除最大化按钮.

I want to only remove the maximize button from the JFrame.

推荐答案

使其不可调整大小:

frame.setResizable(false);

您仍将拥有最小化和关闭按钮.

You will still have the minimize and close buttons.

相关文章