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

2

如果您的方法中有任何可用的节点,您可以通过

your_Node.getParent().getScene().setCursor(Cursor.WAIT);
于 2013-06-24T09:49:25.803 回答
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 回答