【JavaFX BorderPane】BorderPane将节点排列在屏幕的左, 右, 中心, 顶部和底部。它由javafx.scene.layout.BorderPane类表示。此类提供了各种方法, 例如setRight(), setLeft(), setCenter(), setBottom()和setTop(), 这些方法用于设置指定节点的位置。我们需要实例化BorderPane类以创建BorderPane布局。
属性
下表列出了BorderPane类的属性及其setter方法。
类型 | 属性 | 设置方法 | 描述 |
---|---|---|---|
Node | Bottom | setBottom() | 将节点添加到屏幕底部 |
Node | Centre | setCentre() | 将节点添加到屏幕中心 |
Node | Left | setLeft() | 将节点添加到屏幕左侧 |
Node | Right | setRight() | 将节点添加到屏幕右侧 |
Node | Top | setTop() | 将节点添加到屏幕顶部 |
该类中有以下构造函数。
- BorderPane():创建空布局
- BorderPane(Node Center):使用中心节点创建布局
- BorderPane(节点中心, 节点顶部, 节点右侧, 节点底部, 节点左侧):创建具有所有节点的布局
package application;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.*;
import javafx.stage.Stage;
public class Label_Test extends Application { @Override
public void start(Stage primaryStage) throws Exception {
BorderPane BPane = new BorderPane();
BPane.setTop(new Label("This will be at the top"));
BPane.setLeft(new Label("This will be at the left"));
BPane.setRight(new Label("This will be at the Right"));
BPane.setCenter(new Label("This will be at the Centre"));
BPane.setBottom(new Label("This will be at the bottom"));
Scene scene = new Scene(BPane, 600, 400);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
文章图片
推荐阅读
- JavaFX BoxBlur效果
- JavaFX Bloom效果
- JavaFX条形图
- JavaFX混合效果
- JavaFX AreaChart
- java|历时半年,拿了五个大厂offer,阿里、携程、京东、腾讯、美团、字节跳动面经汇总
- 程序员|2021新鲜出炉,历时三个月的我终于拿到了字节跳动的offer,分享一下我的过关经验。
- Android 之 沉浸式状态栏及顶部状态栏背景色设置
- requestAPP1.jps