I would like to develop windows applications that has native Mac OSX 10.9 look and feel.
Use this instead:
try {
// Significantly improves the look of the output in each OS..
// By making it look 'just like' all the other apps.
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch(Exception weTried) {
}
Note: It will not port the OS X look to Windows. But your users will thank you for that.
Can I use any open source UI assets to achieve Mac look and feel?
Nope. Apple would sue the pants off anyone who tried to replicate their look.
6
solved Which Java UI framework provides Mac OSX 10.9 user experience on Windows 7/8? [closed]