Swing控件(JLabel,JButton....)设置字体和大小

[b]关键字:Swing控件,JButton,JLabel,字体,大小,样式
[/b]
有很多方法可以给Swing的控件设置字体和样式,我这里介绍一种直观的。
首先我们要定义一种字体例如:
Font f = new Font("隶书",Font.PLAIN,15);

然后我们利用UIManager全局的给控件设置样式,例如:
UIManager.put("Label.font",font);
这样我们就给所有的JLabel设置了字体的样式即15号隶书。

这样的好处就是我们可以利用一个全局的方法,精确控制各种控件的字体和大小。

当然关于JLabel,您还可以用更灵活的方法,JLabel里的内容是支持html标签的。例如:
JLabel demoLabel = new JLabel();
//demoLabel.setText("这是一号标题");
//demoLabel.setText("
  • 这是一号标题
  • ");
    demoLabel.setText("

    这是一号标题

    ");


  • 下面是UIManager的详细参数

    Font f = new Font("隶书",Font.PLAIN,15);
    UIManager.put("Button.font",font);
    UIManager.put("ToggleButton.font",font);
    UIManager.put("RadioButton.font",font);
    UIManager.put("CheckBox.font",font);
    UIManager.put("ColorChooser.font",font);
    UIManager.put("ToggleButton.font",font);
    UIManager.put("ComboBox.font",font);
    UIManager.put("ComboBoxItem.font",font);
    UIManager.put("InternalFrame.titleFont",font);
    UIManager.put("Label.font",font);
    UIManager.put("List.font",font);
    UIManager.put("MenuBar.font",font);
    UIManager.put("Menu.font",font);
    UIManager.put("MenuItem.font",font);
    UIManager.put("RadioButtonMenuItem.font",font);
    UIManager.put("CheckBoxMenuItem.font",font);
    UIManager.put("PopupMenu.font",font);
    UIManager.put("OptionPane.font",font);
    UIManager.put("Panel.font",font);
    UIManager.put("ProgressBar.font",font);
    UIManager.put("ScrollPane.font",font);
    UIManager.put("Viewport",font);
    UIManager.put("TabbedPane.font",font);
    UIManager.put("TableHeader.font",font);
    UIManager.put("TextField.font",font);
    UIManager.put("PasswordFiled.font",font);
    UIManager.put("TextArea.font",font);
    UIManager.put("TextPane.font",font);
    UIManager.put("EditorPane.font",font);
    UIManager.put("TitledBorder.font",font);
    UIManager.put("ToolBar.font",font);
    UIManager.put("ToolTip.font",font);
    UIManager.put("Tree.font",font);


    文章地址:[url]http://javapub.iteye.com/blog/753739[/url]

    你可能感兴趣的:(Swing)