Closed
Description
I couldn't find a method in Darklaf to set the default font (the default font of Windows Darklaf is not designed for Chinese), so I used the following code and it works:
setDefaultFont(new FontUIResource(new Font("Microsoft YaHei", Font.PLAIN, 12)));
public static void setDefaultFont(FontUIResource defaultFont) {
Enumeration<Object> keys = UIManager.getDefaults().keys();
while (keys.hasMoreElements()) {
Object key = keys.nextElement();
Object value = UIManager.get(key);
if (value instanceof FontUIResource)
UIManager.put(key, defaultFont);
}
}
However, after using the above code, the Font Size Settings of ThemeSettings no longer works (tried Apply and OK).
Another problem is that when I use the Locale.setDefault()
method to set the Locale to a different language (e.g. English, Japanese), the ThemeSettings panel is still the default language used by the system (Chinese).
Maybe you can write a method that sets the default font and add it to ThemeSettings :)
After using the code | Normal situation |
---|---|
![]() |
![]() |