0

我试图将按钮放在我的 BorderPane 的底部,但我一直收到错误消息,我以前曾让它工作,但现在收到错误“应用程序启动方法中的异常”。

package assign3;

import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.Background;
import javafx.scene.layout.BackgroundFill;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.CornerRadii;
import javafx.scene.layout.GridPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.scene.paint.Color;
import javafx.stage.Stage;

public class Question2 extends Application
{

    @Override
    public void start( Stage obPrimeStage ) throws Exception
    {
        Button btRed = new Button("Red");
        Button btGreen = new Button("Green");
        Button btBlue = new Button("Blue");
        Button btOrange = new Button("Orange");
        Button btStart = new Button("Start");

        BorderPane obBorder = new BorderPane();
        HBox obPane = new HBox();

        obPane.getChildren().add(btRed);
        obPane.getChildren().add(btGreen);
        obPane.getChildren().add(btBlue);
        obPane.getChildren().add(btOrange);
        obPane.getChildren().add(btStart);

        obBorder.setBottom(obPane);

        Scene obScene = new Scene(obPane, 400, 400);

        obPrimeStage.setTitle("Question 2");
        obPrimeStage.setScene(obScene);
        obPrimeStage.show();

        btRed.setOnAction((ActionEvent e) -> 
        {
            obPane.setBackground(new Background(new BackgroundFill(Color.RED, CornerRadii.EMPTY, Insets.EMPTY)));
        });

        btGreen.setOnAction((ActionEvent e) -> 
        {
            obPane.setBackground(new Background(new BackgroundFill(Color.GREEN, CornerRadii.EMPTY, Insets.EMPTY)));
        });

        btBlue.setOnAction((ActionEvent e) -> 
        {
            obPane.setBackground(new Background(new BackgroundFill(Color.BLUE, CornerRadii.EMPTY, Insets.EMPTY)));
        });



    }

    public static void main( String[] args )
    {
        Application.launch(args);

    }

}

我觉得它与 obBorder.setBottom(obPane) 有关,但不确定。我们的讲师对所有这些都进行了掩饰,即使在查看了 javadoc 之后,我也很难理解它。

任何帮助将不胜感激。

4

1 回答 1

1

您不能将节点添加到另一个窗格,使其成为场景的根。(阅读堆栈跟踪:它准确地告诉您出了什么问题。)

我想你的意思是

Scene obScene = new Scene(obBorder, 400, 400);

代替

Scene obScene = new Scene(obPane, 400, 400);
于 2017-03-13T22:48:14.877 回答