1
我使用Windows 7.我想在Java Swing中使用Oyoaha的外觀和感覺。我不知道Oyoaha的類名。請告訴我如何使用LookAndFeel?Oyoaha在Java Swing中的外觀和感覺
Oyoaha.jar可以發現:http://sourceforge.net/projects/oalnf/
我使用Windows 7.我想在Java Swing中使用Oyoaha的外觀和感覺。我不知道Oyoaha的類名。請告訴我如何使用LookAndFeel?Oyoaha在Java Swing中的外觀和感覺
Oyoaha.jar可以發現:http://sourceforge.net/projects/oalnf/
或者:
OyoahaLookAndFeel laf = new OyoahaLookAndFeel();
UIManager.setLookAndFeel(laf);
或:
...
// get laf class name
System.out.println(laf.getClass().getName());
// prints "com.oyoaha.swing.plaf.oyoaha.OyoahaLookAndFeel"
...
UIManager.setLookAndFeel("com.oyoaha.swing.plaf.oyoaha.OyoahaLookAndFeel");
感謝ü何苦much.Is有任何透明(換膚)玻窗的主題或mac主題。我馬上開始學習。我應該在哪裏放置這個jar?也給我一個類名。 – Vimal 2012-08-13 17:32:40
@ user1446431:你應該把jar放在你的casspath的任何地方(http://en.wikipedia.org/wiki/Classpath_%28Java%29);班級名稱在答案中(見最後一行);關於glassy LAF你也可以看看http://code.google.com/p/seaglass – 2012-08-13 18:06:12
這個東西給了我一些內部的NullPointerException ...關於滾動條的東西......怪異的...... – 2013-01-26 22:27:25