WindowsLookAndFeel - 使用什么字体 - 有没有办法改变它
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
使用什么字体?如果我有一个使用 windowslookandfeel 的应用程序,有没有办法通过更改此 L&F 的默认字体来更改本地系统上使用的字体 - 我正在考虑更改 Windows 选项 - 例如控制面板/注册表/系统属性等...
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows L&F 中使用多种默认字体。最常用的是
Font.DIALOG
,但它也使用Font.SANS_SERIF
和Font.MONOSPACED
。更改默认值是通过类 UIDefaults 完成的 (JavaDoc)。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).