10

我正在为我的笔记本电脑开发一个工具。我想禁用 JFrame 中的最小化按钮。我已经禁用了最大化和关闭按钮。

这是禁用最大化和关闭按钮的代码:

JFrame frame = new JFrame();  
frame.setResizable(false); //Disable the Resize Button  
// Disable the Close button
frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE); 

请告诉我如何禁用最小化按钮。

4

5 回答 5

10

一般来说,你不能,你可以做的是使用 aJDialog而不是JFrame

于 2012-10-28T07:47:51.973 回答
10

正如@MadProgrammer 所说(对他+1),这绝对不是你想要的好主意

  • 使用 a JDialogand callsetDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);来确保它不能被关闭。

  • 您也可以使用JWindow(+1 to @MM) 或调用setUndecorated(true);您的JFrame实例。

或者,您可能希望通过在方法中覆盖和调用来添加自己的WindowAdapater以使JFrame不可最小化等:windowIconified(..)setState(JFrame.NORMAL);

//necessary imports
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JFrame;
import javax.swing.JOptionPane;

public class Test {

    /**
     * Default constructor for Test.class
     */
    public Test() {
        initComponents();
    }

    public static void main(String[] args) {

        /**
         * Create GUI and components on Event-Dispatch-Thread
         */
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                Test test = new Test();
            }
        });
    }
    private final JFrame frame = new JFrame();

    /**
     * Initialize GUI and components (including ActionListeners etc)
     */
    private void initComponents() {
        frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
        frame.setResizable(false);
        frame.addWindowListener(getWindowAdapter());

        //pack frame (size JFrame to match preferred sizes of added components and set visible
        frame.pack();
        frame.setVisible(true);
    }

    private WindowAdapter getWindowAdapter() {
        return new WindowAdapter() {
            @Override
            public void windowClosing(WindowEvent we) {//overrode to show message
                super.windowClosing(we);

                JOptionPane.showMessageDialog(frame, "Cant Exit");
            }

            @Override
            public void windowIconified(WindowEvent we) {
                frame.setState(JFrame.NORMAL);
                JOptionPane.showMessageDialog(frame, "Cant Minimize");
            }
        };
    }
}
于 2012-10-28T08:59:17.360 回答
8

如果您不想允许任何用户操作,请使用JWindow.

于 2012-10-28T07:49:36.837 回答
5

您可以尝试将您的 JFrame 类型更改为 UTILITY。然后你不会在你的程序中看到最小化 btn 和最大化 btn。

于 2015-12-13T10:19:38.080 回答
1

我建议您使用 jframe.setUndecorated(true) ,因为您不使用任何窗口事件并且不希望调整应用程序的大小。如果您想移动面板,请使用我制作的 MotionPanel 。

于 2012-11-27T14:40:56.100 回答