Reputation: 29
Basically what the title says. I couldn't change the font size of the title bar in a JDialog.
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