JavaFx停止场景

时间:2017-05-01 07:39:48

标签: javafx

我是JavaFx的新手,仍在学习教程。我有这个小游戏来创建,我把我的显示分为几类。有菜单类,游戏类等。我把我的开始和主要方法放在菜单类中。我正在做的是创建一个菜单类的实例,并将场景设置为此类的。一旦从这个班级按下按钮,我需要一种方法来停止场景。

public void start(Stage primaryStage) throws Exception {
        primaryStage.setTitle("Buccanner");
        primaryStage.setWidth(640);
        primaryStage.setHeight(480);

        //Start with Menu
        BuccannerMenu menu = new BuccannerMenu();
        Scene scene = new Scene(menu.createContent());

// So right here, the scene should stop in the menu class and the following commands should be executed. Any idea plz?

//Start Game Scene
        Scene theScene = new Scene(createContent());
        primaryStage.setScene(theScene);

        primaryStage.show();

    }

Ps:我不能使用Fxml

0 个答案:

没有答案