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

时间:2011-04-11 18:00:24

标签: java swing jframe titlebar maximize-window

我有一个JFrame,想要从中移除最大化按钮。

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

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

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

10 个答案:

答案 0 :(得分:64)

让它无法调整大小:

frame.setResizable(false);

您仍然可以使用最小化和关闭按钮。

答案 1 :(得分:8)

您无法从JFrame删除该按钮。请改用JDialog。它没有最大化按钮。

答案 2 :(得分:3)

import java.awt.event.WindowAdapter; 
import java.awt.event.WindowEvent;    
import javax.swing.JDialog; import javax.swing.JFrame;
import javax.swing.JPanel;

public class Test extends JDialog {
    public Test(JFrame frame, String str) {
        super(frame, str);
        addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent evt) {
                System.exit(0);
            }
        });
    }

    public static void main(String[] args) {
        try {
            Test myFrame = new Test(new JFrame(), "Removing maximize button");
            JPanel panel = new JPanel();
            panel.setSize(100, 100);
            myFrame.add(panel);
            myFrame.setSize(100, 100);
            myFrame.setVisible(true);
        } catch (IllegalArgumentException e) {
            System.exit(0);
        }
    } }

答案 3 :(得分:3)

在JFrame属性中 - > maximumSize = minimumSize。并且resizable = false。完成!该按钮被禁用。

答案 4 :(得分:1)

/**
 * Removes the buttons from the JDialog title frame. This is a work around
 * to removing the close button
 * 
 * This is confirmed to work with the Metal L&F
 */
public void removeAllTitleFrameButtons() {

    /* Get the components of the dialog */
    Component[] comps = this.getRootPane().getComponents();

    /* Indicator to break from loop */
    boolean breakFromLoop = false;

    /*
     * Go through the components and find the title 
     * pane and remove the buttons.  
     */
    for(Component comp : comps) {
        /* Shall we break from loop */
        if(breakFromLoop) break;
        if(comp.getClass().getName().indexOf("JLayeredPane") >0) {
            for(Component jcomp : ((JLayeredPane)comp).getComponents()) {
                if(jcomp.getClass().getName().indexOf("Title") > 0) {

                    /* Get the XXXXTitlePane Components */
                    Component[] titlePaneComps = ((JComponent)jcomp).getComponents();

                    for(Component tpComp : titlePaneComps) {
                        if(tpComp instanceof JButton) {
                            ((JButton)tpComp).setVisible(false);                        
                        }
                    }
                    /* No need to continue processing */
                    breakFromLoop = true;
                    break;
                }
            }
        }
    }
}

答案 5 :(得分:0)

There描述了如何在没有最大化和最小化按钮的情况下实现“JFrame”。 你需要在JDialog中“封装”一个JFrame:

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class RemoveMaxAndMinButton extends JDialog{
  public RemoveMaxAndMinButton(JFrame frame, String str){
    super(frame,str);
    addWindowListener(new WindowAdapter(){
            public void windowClosing(WindowEvent evt){
        System.exit(0);
            }
        });
  }
  public static void main(String[] args){
    try{
      RemoveMaxAndMinButton frame = new RemoveMaxAndMinButton(new JFrame(),
            "Remove the Minimize and Maximize button from the Title Bar");
      JPanel panel = new JPanel();
      panel.setSize(200,200);
      JLabel lbl = new JLabel("RoseIndia.Net");
      panel.add(lbl);
      frame.add(panel);
      frame.setSize(400, 400);
      frame.setVisible(true);
    }
    catch(IllegalArgumentException e){
      System.exit(0);
    }
  } 

}

答案 6 :(得分:0)

转到JFrame的属性并设置可调整大小为未选中状态。

答案 7 :(得分:0)

frame.setUndecorated(true)

这将删除最大化按钮以及关闭和最小化按钮。

答案 8 :(得分:0)

将类型属性更改为实用程序。它只会显示关闭按钮。

答案 9 :(得分:-1)

如果您使用的是Netbean,则只需取消选择属性中的resizable选项即可。它只会禁用最小化/最大化按钮。