1

我正在使用 Windows 7。我想在 Java Swing 中使用 Oyoaha 外观。我不知道 Oyoaha 的班级名称。请告诉我如何使用 LookAndFeel?

Oyoaha.jar 可以在以下位置找到:http: //sourceforge.net/projects/oalnf/

4

1 回答 1

3

任何一个:

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");
于 2012-08-13T11:07:50.677 回答