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.
