0
我在我的Java應用程序中設置了外觀和感覺靈敏度,但我不知道爲什麼視圖始終與一幀不同。在一個框架中,我獲得了非常好的藍色靈氣,而在其他框架中,我獲得了灰色的靈氣,但這不合適。另一個沒有顯示爲使用靈氣外觀和感覺。下面是我在主Java nimbus外觀視圖總是不同
try {
for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (Exception e) {
// If Nimbus is not available, you can set the GUI to another look and feel.
}
使用的代碼我還進口
import javax.swing.*;
import javax.swing.UIManager.LookAndFeelInfo;
我希望有人能幫幫我,謝謝。
可能相關:http://stackoverflow.com/questions/7612592/jframe-and-nimbus-look-and-feel – assylias 2012-04-06 20:10:34
是否如果您使用'java -Dswing.defaultlaf = javax.swing.plaf.nimbus.NimbusLookAndFeel MyApp'運行應用程序,它會正常工作(請參閱:http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/nimbus。 HTML) – ulmangt 2012-04-06 20:11:16