一切皆可抽象

          大而無形 庖丁解牛 厚積薄發 滌慮玄覽
             ::  ::  ::  ::  :: 管理

          最近在做Java Application的項目,對于ui的美觀,做了一些嘗試。有幸看到了JGoodIdes的LookAndFeel包。
          效果大家可以看看如下連接
                  http://www.jgoodies.com
          經過試驗,解決了中文亂碼問題,下面將經驗和大家共分享。
          LookAndFeel如同css一樣,具體的概念大家可以參考其他文章,這里不做贅述。

          http://www.aygfsteel.com/Files/itaogo/plastic-1.1.3.zip
          1,加載附件plastic-1.1.3.jar到lib path,我用的是jbuilderX
          2,創建一個新類AppFont.java
             import java.awt.*;
             import javax.swing.UIManager;
             public class AppFont()
             {
               public static void setFont(Font pFont){
                UIManager.put("Button.font", pFont);
                UIManager.put("ToggleButton.font", pFont);
                UIManager.put("RadioButton.font", pFont);
                UIManager.put("CheckBox.font", pFont);
                UIManager.put("ColorChooser.font", pFont);
                UIManager.put("ToggleButton.font", pFont);
                UIManager.put("ComboBox.font", pFont);
                UIManager.put("ComboBoxItem.font", pFont);
                UIManager.put("InternalFrame.titleFont", pFont);
                UIManager.put("Label.font", pFont);
                UIManager.put("List.font", pFont);
              UIManager.put("MenuBar.font", pFont);
              UIManager.put("Menu.font", pFont);
              UIManager.put("MenuItem.font", pFont);
              UIManager.put("RadioButtonMenuItem.font", pFont);
              UIManager.put("CheckBoxMenuItem.font", pFont);
              UIManager.put("PopupMenu.font", pFont);
              UIManager.put("OptionPane.font", pFont);
              UIManager.put("Panel.font", pFont);
              UIManager.put("ProgressBar.font", pFont);
              UIManager.put("ScrollPane.font", pFont);
              UIManager.put("Viewport", pFont);
              UIManager.put("TabbedPane.font", pFont);
              UIManager.put("TableHeader.font", pFont);
              UIManager.put("Table.font", pFont);
              UIManager.put("TextField.font", pFont);
              UIManager.put("PasswordFiled.font", pFont);
              UIManager.put("TextArea.font", pFont);
              UIManager.put("TextPane.font", pFont);
              UIManager.put("EditorPane.font", pFont);
              UIManager.put("TitledBorder.font", pFont);
              UIManager.put("ToolBar.font", pFont);
              UIManager.put("ToolTip.font", pFont);
              UIManager.put("Tree.font", pFont);
                }
             }
          3,尋找您的java application 的主程序 
           
            //引入
            import com.jgoodies.plaf.LookUtils;
            import com.jgoodies.plaf.plastic.PlasticLookAndFeel;
           
            //修改程序如下
            //Main method
             public static void main(String[] args) {
              try {
                //原來的,請注釋掉;jbuilder是如此寫法。
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                //修改為
                UIManager.put("ClassLoader", LookUtils.class.getClassLoader());
                UIManager.setLookAndFeel(new PlasticLookAndFeel());
                AppFont.setFont(new java.awt.Font("宋體", 0, 12));
              }
              catch(Exception e) {
                e.printStackTrace();
              }
              new MainApp();
            }
           
           4,附件2 UISample.rar是jbuilder的一個簡單效果的項目。下載地址 http://www.aygfsteel.com/Files/itaogo/UISample.rar

          主站蜘蛛池模板: 平乐县| 皋兰县| 白玉县| 若尔盖县| 绥德县| 商河县| 长寿区| 桓台县| 弥勒县| 栾城县| 云和县| 抚宁县| 新昌县| 文山县| 景谷| 常宁市| 普定县| 新营市| 屏边| 绿春县| 江津市| 安达市| 东宁县| 刚察县| 师宗县| 凭祥市| 马鞍山市| 贡嘎县| 屏南县| 嘉峪关市| 余干县| 青河县| 定远县| 小金县| 延寿县| 长岛县| 江北区| 屏边| 唐海县| 额济纳旗| 舞钢市|