Zeke
Zeke

Reputation: 29

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

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();
    }

Upvotes: 1

Views: 142

Answers (0)

Related Questions