How to change font size in the title bar of a JDialog

144 Views Asked by At

Basically what the title says. I couldn't change the font size of the title bar in a JDialog.

See Image for the problem

 public MyDialog(Frame parent, Bank b) {
        super(parent, "Create Account", true);
        this.bank = b;

        Point loc = parent.getLocation();
        setLocation(loc.x + 420, loc.y + 260);
        JPanel panel = new JPanel();        

        setupGUI();
        fieldDataIsOK();
        getContentPane().add(panel);
        pack();
    }
0

There are 0 best solutions below