JavaFX - BorderPane 布局



如果我们使用 BorderPane,节点将排列在顶部、左侧、右侧、底部和中心位置。

名为 BorderPane 的类(位于 javafx.scene.layout 包中)表示 BorderPane。

此类包含五个属性,包括:

  • bottom - 此属性为 Node 类型,表示放置在 BorderPane 底部的节点。您可以使用 setter 方法 setBottom() 为此属性设置值。

  • center - 此属性为 Node 类型,表示放置在 BorderPane 中心的节点。您可以使用 setter 方法 setCenter() 为此属性设置值。

  • left - 此属性为 Node 类型,表示放置在 BorderPane 左侧的节点。您可以使用 setter 方法 setLeft() 为此属性设置值。

  • right - 此属性为 Node 类型,表示放置在 BorderPane 右侧的节点。您可以使用 setter 方法 setRight() 为此属性设置值。

  • top - 此属性为 Node 类型,表示放置在 BorderPane 顶部的节点。您可以使用 setter 方法 setTop() 为此属性设置值。

除此之外,此类还提供以下方法:

  • setAlignment() - 此方法用于设置属于此窗格的节点的对齐方式。此方法接受一个节点和一个优先级值。

示例

以下程序是 BorderPane 布局的示例。在此,我们将五个文本字段插入到顶部、底部、右侧、左侧和中心位置。

将此代码保存在名为 BorderPaneExample.java 的文件中。

import javafx.application.Application; 
import javafx.collections.ObservableList; 
import javafx.scene.Scene; 
import javafx.scene.control.TextField; 
import javafx.scene.layout.BorderPane; 
import javafx.stage.Stage; 
         
public class BorderPaneExample extends Application { 
   @Override 
   public void start(Stage stage) {      
      //Instantiating the BorderPane class  
      BorderPane bPane = new BorderPane();   
       
      //Setting the top, bottom, center, right and left nodes to the pane 
      bPane.setTop(new TextField("Top")); 
      bPane.setBottom(new TextField("Bottom")); 
      bPane.setLeft(new TextField("Left")); 
      bPane.setRight(new TextField("Right")); 
      bPane.setCenter(new TextField("Center")); 
      
      //Creating a scene object 
      Scene scene = new Scene(bPane);  
      
      //Setting title to the Stage
      stage.setTitle("BorderPane Example"); 
         
      //Adding scene to the stage 
      stage.setScene(scene);          
      
      //Displaying the contents of the stage 
      stage.show(); 
   } 
   public static void main(String args[]){ 
      launch(args); 
   } 
}

使用以下命令从命令提示符编译并执行保存的 Java 文件。

javac BorderPaneExample.java 
java BorderPaneExample

执行上述程序后,将生成一个如下所示的 JavaFX 窗口。

BorderPane
javafx_layout_panes.htm
广告