2

私は以下のコードが機能しているコードを使用しました

public void start(Stage stage) {
/* some code... */
scene.setCursor(Cursor.WAIT);
}

しかし、自分のメソッドの 'scene.setCursor(Cursor.WAIT)' コードが機能していない、自分のメソッドで待機カーソルを設定する方法が必要です。

以下のコードは、たとえば、次のように使用します。

public void ImportLocalBook(Scene main) {
/* some code... */
scene.setCursor(Cursor.WAIT);
/* some code... */
}
4

2 に答える 2

0
    setSceneCursor(parentScene, Cursor.WAIT);

above code to call the below method.. we can have below method in common place and we can access that code from anywhere if we can access class of below method

    public void setSceneCursor(Scene scene,Cursor cv)
{
scene.setCursor(cv);
}
于 2014-01-20T12:34:52.597 に答える