JavaFX - FlowPane



如果我们在应用程序中使用 FlowPane,则所有节点都将包装在一个流中。水平 FlowPane 在其高度处包装窗格的元素,而垂直 FlowPane 在其宽度处包装元素。

名为 FlowPane 的类,位于 javafx.scene.layout 包中,表示 FlowPane。此类包含 7 个属性,包括:

  • alignment - 此属性表示 FlowPane 内容的对齐方式。您可以使用 setter 方法 setAllignment() 设置此属性。

  • columnHalignment - 此属性表示垂直 FlowPane 中节点的水平对齐方式。

  • rowValignment - 此属性表示水平 FlowPane 中节点的垂直对齐方式。

  • Hgap - 此属性为双精度类型,表示 FlowPane 的行/列之间的水平间隙。

  • Orientation - 此属性表示 FlowPane 的方向。

  • Vgap - 此属性为双精度类型,表示 FlowPane 的行/列之间的垂直间隙。

示例

以下程序是 FlowPane 布局的示例。在这里,我们在水平 FlowPane 中插入四个按钮。

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

import javafx.collections.ObservableList; 
import javafx.geometry.Insets; 
import javafx.scene.Scene; 
import javafx.scene.control.Button; 
import javafx.scene.layout.FlowPane; 
import javafx.scene.shape.Sphere; 
import javafx.stage.Stage; 
         
public class FlowPaneExample extends Application { 
   @Override 
   public void start(Stage stage) {      
      //Creating button1 
      Button button1 = new Button("Button1");       
      
      //Creating button2 
      Button button2 = new Button("Button2");       
      
      //Creating button3
      Button button3 = new Button("Button3");       
      
      //Creating button4 
      Button button4 = new Button("Button4");       
      
      //Creating a Flow Pane 
      FlowPane flowPane = new FlowPane();    
       
      //Setting the horizontal gap between the nodes 
      flowPane.setHgap(25); 
       
      //Setting the margin of the pane  
      flowPane.setMargin(button1, new Insets(20, 0, 20, 20)); 
       
      //Retrieving the observable list of the flow Pane 
      ObservableList list = flowPane.getChildren(); 
      
      //Adding all the nodes to the flow pane 
      list.addAll(button1, button2, button3, button4); 
        
      //Creating a scene object 
      Scene scene = new Scene(flowPane);  
      
      //Setting title to the Stage 
      stage.setTitle("Flow Pane 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 FlowPaneExample.java 
java FlowPaneExample

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

FlowPane
javafx_layout_panes.htm
广告