JavaFX HBox类

HBox 布局窗格将节点排列在一行中。它由javafx.scene.layout.HBox类表示。我们只需要实例化 HBox 类即可创建 HBox 布局。

1 HBox类的属性

属性 描述 setter方法
alignment 这表示节点的对齐。 setAlignment(Double)
fillHeight 这是一个布尔属性。如果将此属性设置为 true,则节点的高度将等于 HBox 的高度。 setFillHeight(Double)
spacing 这表示 HBox 中节点之间的空间。它是双重类型。 setSpacing(Double)

2 HBox类的构造函数

该类包含下面给出的两个构造函数。

  1. new HBox() : 创建间距为 0 的 HBox 布局
  2. new Hbox(Double spacing) : 创建带有间距值的 HBox 布局

3 HBox类的例子

package com.yiidian;

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;

public class Label_Test extends Application {
  
      @Override
      public void start(Stage primaryStage) throws Exception {
              Button btn1 = new Button("Button 1");
              Button btn2 = new Button("Button 2");
              HBox root = new HBox();
              Scene scene = new Scene(root,200,200);
              root.getChildren().addAll(btn1,btn2);
              primaryStage.setScene(scene);
              primaryStage.setTitle("一点教程网:HBox Example");
              primaryStage.show();
      }
      public static void main(String[] args) {
              launch(args);
      }
      
}  

输出结果为:

4 HBox类的例子:设置节点之间的空间

package com.yiidian;

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;

public class Label_Test extends Application {

        @Override
        public void start(Stage primaryStage) throws Exception {
                Button btn1 = new Button("Button 1");
                Button btn2 = new Button("Button 2");
                HBox root = new HBox();
                Scene scene = new Scene(root,200,200);
                root.getChildren().addAll(btn1,btn2);
                root.setSpacing(40);
                primaryStage.setScene(scene);
                primaryStage.setTitle("一点教程网:HBox Example");
                primaryStage.show();
        }
        public static void main(String[] args) {
              launch(args);
      }
      
}  

输出结果为:

热门文章

优秀文章