如何使用Swing应用程序的自定义外观?

时间:2014-02-25 08:51:35

标签: java eclipse swing classpath look-and-feel

如何在Java项目中使用自定义外观jar文件Ex:Seaglass外观?

成功使用任何外观jar项目以及如何将jar文件添加到类路径所需的步骤是什么?

1 个答案:

答案 0 :(得分:1)

我将使用seaglass外观和感觉jar文件来解释答案,你可以下载相同的 here

步骤1:首先将下载的外观添加到项目类路径

在eclipse中右键单击您的项目,转到Build path并选择configure build path,在Libraries选项卡下选择Add External Jar并找到您的Jar文件(在这种情况下是seaglass jar文件)。按下确定后,它将显示在项目的“参考库”下。

步骤2:使用UIManager注册LookAndFeel类

try {
UIManager.setLookAndFeel("com.seaglasslookandfeel.SeaGlassLookAndFeel");
} catch (Exception e) {
e.printStackTrace();
}

在JFrame类构造函数中添加此代码。  对于其他外观和感觉jar文件,在代码中将“com.seaglasslookandfeel.SeaGlassLookAndFeel”替换为其外观和感觉类(如果你找不到的话,谷歌吧)。

你已经完成了,运行你的项目,你看到了你想要的外观和感觉,享受