Does anyone know if it is possible to limit how the user resizes a JDialog?
I know i can call the method setResizible(boolean) and that disables or enables the user from
You could add a ComponentListener
to the JDialog, and check in componentResized
if height changed. This could be implemented by extending the JDialog class this way:
public class Dialog extends javax.swing.JDialog {
public Dialog(java.awt.Frame parent, boolean modal) {
super(parent, modal);
initComponents();
final int h = getHeight();
addComponentListener(new ComponentAdapter() {
@Override
public void componentResized(ComponentEvent e) {
Rectangle b = getBounds();
if (b.height != h) {
b.height = h;
setBounds(b);
}
super.componentResized(e);
}
});
}
}