UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
What font gets used? If I have an app, which is using the windowslookandfeel, is there a way to change the font used on a local system, by changing the default font for this L&F - I am looking at changing Windows options - such as Control Panel/Registry/System Properties etc..
Thanks
Multiple default fonts are used in the Windows L&F. The most used one is
Font.DIALOG
, but it also usesFont.SANS_SERIF
, andFont.MONOSPACED
. Changing the default is done via the class UIDefaults (JavaDoc).