我刚刚找到一个漂亮的外观,我想用于我的程序外观,但我不确定如何集成它。这就是我的目光:
我设法找到了网站并下载了一个jar文件,我已将其包含在构建路径中。我还找到了以下代码行:
UIManager.setLookAndFeel("com.jtattoo.plaf.acryl.AcrylLookAndFeel");
当我运行它时,我没有任何错误,但它看起来不像图像。我错过了台阶吗?我需要做什么?
我的另一个问题是我目前正在使用mac,但无论我是在Mac上还是在Windows上运行我的程序,我都希望外观保持一致。这甚至可能吗?如果是这样,请您告知如何执行此操作(如果需要进行任何更改)?
答案 0 :(得分:2)
在Java中设置Swing外观在操作系统之间进行。在创建Swing GUI之前,我始终只做过它。
public static void main(String[] args) {
try {
UIManager.setLookAndFeel("com.jtattoo.plaf.acryl.AcrylLookAndFeel");
}
// Probably want to break this into handling the various exceptions that can be thrown.
catch (Exception e) {
// handle exception
}
// Create Swing GUI and so forth
}
答案 1 :(得分:0)
import org.jvnet.substance.SubstanceLookAndFeel;
public class Main {
public static void main(String[] args) {
/*Si no se tiene instalado la libreria Substance*/
//formpadre fp= new formpadre();
//fp.show();
/*si la libreria substance esta instalada y configurada*/
EventQueue.invokeLater(new Runnable(){
public void run(){
try{
JFrame.setDefaultLookAndFeelDecorated(true);
SubstanceLookAndFeel.setSkin("org.jvnet.substance.skin.BusinessBlueSteelSkin"); //SubstanceLookAndFeel.setCurrentTheme("org.jvnet.substance.theme.SubstanceAquaTheme");
}
catch(Exception e){
}
new formpadre().setVisible(true);
}
});
}
}
答案 2 :(得分:0)
在创建JFrame之前:
// setup the look and feel properties
Properties props = new Properties();
// set your theme
SmartLookAndFeel.setCurrentTheme(props);
// select the Look and Feel
UIManager.setLookAndFeel("com.jtattoo.plaf.smart.SmartLookAndFeel");