GridPane布局窗格允许我们在多个行和列中添加多个节点。它被视为行和列的灵活网格, 可以在网格的任何单元中放置节点。它由javafx.scence.layout.GridPane类表示。我们只需要实例化此类即可实现GridPane。
物产
下表中给出了类的属性及其设置方法。
属性 | 描述 | 设置方法 |
---|---|---|
alignment | 表示GridPane中网格的对齐方式。 | setAlignment(Pos value) |
gridLinesVisible | 此属性用于调试。通过将此属性设置为true, 可以显示行以显示gidpane的行和列。 | setGridLinesVisible(Boolean value) |
hgap | 列之间的水平间隙 | setHgap(Double value) |
vgap | 行之间的垂直间隙 | setVgap(Double value) |
【JavaFX GridPane】该类仅包含下面给出的一个构造函数。
- Public GridPane():使用0 hgap / vgap创建一个网格窗格。
package application;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
import javafx.scene.layout.GridPane;
import javafx.stage.Stage;
public class Label_Test extends Application { @Override public void start(Stage primaryStage) throws Exception {Label first_name=new Label("First Name");
Label last_name=new Label("Last Name");
TextField tf1=new TextField();
TextField tf2=new TextField();
Button Submit=new Button ("Submit");
GridPane root=new GridPane();
Scene scene = new Scene(root, 400, 200);
root.addRow(0, first_name, tf1);
root.addRow(1, last_name, tf2);
root.addRow(2, Submit);
primaryStage.setScene(scene);
primaryStage.show();
} public static void main(String[] args) {launch(args);
} }
输出:
文章图片
推荐阅读
- JavaFX渐变颜色
- JavaFX发光效果
- 桌面图标怎样变小,本文教您处理桌面图标变小的办法
- 怎样更改wifi密码,本文教您更改WiFi密码的办法
- 浏览器打开不了,本文教您处理浏览器打开不了页面的办法
- 格式化命令,本文教您格式化命令format
- 如何在word中打钩,本文教您在word中打钩的办法
- 网络连接不上,本文教您网络连接不上显示感叹号
- 安装系统 电脑重装系统,本文教您电脑重装系统(安装系统)办法