Pluggable Look and Feel for Windows Mobile
I'm working on a program for use with PDAs (with Windows Mobile installed), and I was wondering if anyone knows how to use the Windows Mobile pluggable look and feel (if it exists) rather than the default Java metallic one?
[231 byte] By [
chrisuk83a] at [2007-11-27 11:02:27]

# 1
see:
http://java.sun.com/javase/6/docs/api/javax/swing/UIManager.html
You can check what look and feel your system supports by using the method
getInstalledLookAndFeels() and the set the look and feel of your choice using
setLookAndFeel() method.
Please let me know If I am missing something.