Change Default Font of JOptionPane?
843804Apr 13 2003 — edited Feb 20 2005I can change default font of JButton using:
UIManager.put("Botton.font",myNewFont);
How can I change the font of JOptionPane?
I tried as below:
UIManager.put("OptionPane.font",myNewFont);
But this line of code does not work as what I expect.
Thank you in advance.