JFontChooser
class is a swing component for font selection. This class has JFileChooser
like APIs. The following code pops up a font chooser dialog. JFontChooser fontChooser = new JFontChooser(); int result = fontChooser.showDialog(parent); if (result == JFontChooser.OK_OPTION) { Font font = fontChooser.getSelectedFont(); System.out.println("Selected Font : " + font); }
|
|
|
|
|
|