简体   繁体   中英

Oyoaha look and feel in Java Swing

I m using windows 7. I want to use Oyoaha look and feel in Java Swing. I dont know the class name for Oyoaha. Please tell me how to use the LookAndFeel?

Oyoaha.jar can be found in : http://sourceforge.net/projects/oalnf/

Either:

OyoahaLookAndFeel laf = new OyoahaLookAndFeel();
UIManager.setLookAndFeel(laf);

or:

...
// 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");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM