JavaFX的新功能我正在关注simple tutorial here 我创建了一个新的JavaFX项目,但它有一个默认的BorderPane而不是StackPane,正如教程所说,所以我把它留在了那里。 应用程序上只有一个按钮,如果我使用BorderPane,则不显示按钮。 如果我将其更改为StackPane,则按钮会显示。 认为由于某种原因,BorderPane正在剪掉一些东西,我使应用程序窗口全尺寸,但我仍然看不到按钮。 这是带有BorderPane的代码,它不显示按钮:
package application;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.BorderPane;
public class Main extends Application {
@Override
public void start(Stage primaryStage) {
try {
BorderPane root = new BorderPane();
Scene scene = new Scene(root,400,400);
scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm());
primaryStage.setTitle("This is a test!");
Button btn = new Button();
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("Hello World!");
}
});
root.getChildren().add(btn);
primaryStage.setScene(scene);
primaryStage.show();
} catch(Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
launch(args);
}
}
有什么想法吗?
答案 0 :(得分:1)
查看有关BorderPane
的文档:
BorderPane在顶部,左侧,右侧,底部和中心布置儿童 位置。
因此您需要使用以下内容:
borderPane.setTop(toolbar);
borderPane.setCenter(appContent);
borderPane.setBottom(statusbar);
在您的情况下,root.getChildren().add(btn);
应为root.setCenter(btn);
。