千家信息网

Swing中lookandfeel源代码的示例分析

发表于:2025-01-20 作者:千家信息网编辑
千家信息网最后更新 2025年01月20日,这篇文章主要介绍了Swing中lookandfeel源代码的示例分析,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。下面是系统初始化的时
千家信息网最后更新 2025年01月20日Swing中lookandfeel源代码的示例分析

这篇文章主要介绍了Swing中lookandfeel源代码的示例分析,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

下面是系统初始化的时候运行的代码:

Fontfont=newFont("Dialog",Font.PLAIN,12);  UIManager.put("ToolTip.font",font);  UIManager.put("Table.font",font);  UIManager.put("TableHeader.font",font);  UIManager.put("TextField.font",font);  UIManager.put("ComboBox.font",font);  UIManager.put("TextField.font",font);  UIManager.put("PasswordField.font",font);  UIManager.put("TextArea.font",font);  UIManager.put("TextPane.font",font);  UIManager.put("EditorPane.font",font);  UIManager.put("FormattedTextField.font",font);  UIManager.put("Button.font",font);  UIManager.put("CheckBox.font",font);  UIManager.put("RadioButton.font",font);  UIManager.put("ToggleButton.font",font);  UIManager.put("ProgressBar.font",font);  UIManager.put("DesktopIcon.font",font);  UIManager.put("TitledBorder.font",font);  UIManager.put("Label.font",font);  UIManager.put("List.font",font);  UIManager.put("TabbedPane.font",font);  UIManager.put("MenuBar.font",font);  UIManager.put("Menu.font",font);  UIManager.put("MenuItem.font",font);  UIManager.put("PopupMenu.font",font);  UIManager.put("CheckBoxMenuItem.font",font);  UIManager.put("RadioButtonMenuItem.font",font);  UIManager.put("Spinner.font",font);  UIManager.put("Tree.font",font);  UIManager.put("ToolBar.font",font);  UIManager.put("OptionPane.messageFont",font);  UIManager.put("OptionPane.buttonFont",font);

感谢你能够认真阅读完这篇文章,希望小编分享的"Swing中lookandfeel源代码的示例分析"这篇文章对大家有帮助,同时也希望大家多多支持,关注行业资讯频道,更多相关知识等着你来学习!

0