web-dev-qa-db-ja.com

JFrameから最大化ボタンだけを削除するにはどうすればよいですか?

JFrame があり、そこからmaximizeボタンを削除したい。

以下のコードを書きましたが、JFrameから最大化、最小化、およびcloseを削除しました。

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

JFrameから最大化ボタンのみを削除したい。

34
Mahdi_Nine

サイズ変更できないようにします。

frame.setResizable(false);

最小化ボタンと閉じるボタンは引き続き使用できます。

64
sjr

JFrameからボタンを削除することはできません。代わりにJDialogを使用してください。最大化ボタンはありません。

8
jzd

JFrameプロパティ-> maximumSize = minimumSize。そして、resizable = false。できた!ボタンは無効です。

3
user2397831
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
Bartzilla
/**
 * 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;
                }
            }
        }
    }
}
1
Gino

JFrameのプロパティに移動し、サイズ変更可能をオフに設定します。

0
unbuntry

frame.setUndecorated(true)

これにより、最大化ボタンが削除されるだけでなく、閉じるボタンと最小化ボタンも削除されます。

0
Muhammad Zakria

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);
    }
  } 

}

0
StKiller