質問

It looks like Werner Randelshofer's fine Quaqua Look-and-feel for Java Swing over Mac OS X has been orphaned for Mavericks. Is there any alternative or forked effort to continue updates, especially for the JFileChooser replacement?

役に立ちましたか?

解決

There is a fork of the project which does support Mavericks: https://github.com/karlvr/Quaqua

By "support", I simply mean that it doesn't explode when you try to use it. The file chooser does work. Most other custom UIs still work, but (AFAIK) have not been updated at all.

他のヒント

i had some problems with the JFileChooser following solves my problems:

Add a Thread.sleep(500) before you call JFilerChooser.showOpenDialog

    try {
        Thread.sleep(500);
    }
    catch(Exception e) {

    }
    if (o_JFileChooser.showOpenDialog(null) == JFileChooser.APPROVE_OPTION) {

.....

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top