In Jinternal Frame(java), i want to hide max, min, close button (not disable max, min, close properties), but when I used this code :

javax.swing.plaf.InternalFrameUI ifu= jif.getUI(); //jif : finternalframe//
((javax.swing.plaf.basic.BasicInternalFrameUI)ifu).setNorthPane(null);

It made all the buttons and the title bar disappeared (imagine the internalframe is a retangle, so only 3sides(down, left and right) visible).

So, how could I hide only 3buttons max, min and close without hiding all the title bar? Thanks.

link|improve this question
feedback

2 Answers

..want to hide max, min, close button

RemoveControls

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

class RemoveControls {

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                JPanel p = new JPanel(new GridLayout());
                p.setPreferredSize(new Dimension(300,120));

                JDesktopPane dtp = new JDesktopPane();
                p.add(dtp);

                JInternalFrame jif = new JInternalFrame("JIF",
                    false, //resizable
                    false, //closable
                    false, //maximizable
                    false); //iconifiable
                jif.setVisible(true);
                jif.setSize(200,100);
                dtp.add(jif);

                JOptionPane.showMessageDialog(null, p);
            }
        });
    }
}
link|improve this answer
simple and clear +1 – mKorbel Feb 20 at 17:32
feedback

See this... http://www.roseindia.net/java/example/java/swing/minimize-maximize.shtml

Close Button Problem....

How to disable (or hide) the close (x) button on a JFrame?

link|improve this answer
Thanks but i also want to hide close button, i alredy edited my post. – Thanh Nguyen Feb 20 at 15:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.