4
 FX.deferAction(new Function0<Void>() {
       @Override public Void invoke() {
       //Some code here
         return null;
       }
    });

我将代码从 javafx 1.3 转换为 javafx 2.1,但我遇到了这个问题。javafx 2.1中这个问题的解决方案是什么?

4

1 回答 1

5
javafx.application.Platform.runLater(new Runnable() {
    public void run() {
        // some code here
    }
});
于 2012-08-22T13:25:52.890 回答