JavaFX - TilePane 布局



如果我们在应用程序中使用此面板,则添加到其中的所有节点都将以统一大小的磁贴形式排列。名为 tilePane 的类,位于 javafx.scene.layout 包中,表示 TilePane。

此类提供了 11 个属性,它们是:

  • alignment - 此属性表示面板的对齐方式,您可以使用 setAlignment() 方法设置此属性的值。

  • hgap - 此属性的类型为 double,它表示每行中每个磁贴之间的水平间距。

  • vgap - 此属性的类型为 double,它表示每行中每个磁贴之间的垂直间距。

  • orientation - 此属性表示每行中磁贴的方向。

  • prefColumns - 此属性的类型为 double,它表示水平磁贴面板的首选列数。

  • prefRows - 此属性的类型为 double,它表示垂直磁贴面板的首选行数。

  • prefTileHeight - 此属性的类型为 double,它表示每个磁贴的首选高度。

  • prefTileWidth - 此属性的类型为 double,它表示每个磁贴的首选宽度。

  • tileHeight - 此属性的类型为 double,它表示每个磁贴的实际高度。

  • tileWidth - 此属性的类型为 double,它表示每个磁贴的实际宽度。

  • tileAlignment - 此属性的类型为 double,它表示每个子节点在其磁贴内的默认对齐方式。

示例

以下程序是磁贴面板布局的示例。在此,我们正在创建一个包含 7 个按钮的磁贴面板。

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

import javafx.application.Application; 
import javafx.collections.ObservableList; 
import javafx.geometry.Orientation; 
import javafx.geometry.Pos; 
import javafx.scene.Scene; 
import javafx.scene.control.Button; 
import javafx.scene.layout.TilePane; 
import javafx.stage.Stage;

public class TilePaneExample extends Application { 
   @Override 
   public void start(Stage stage) {    
      //Creating an array of Buttons 
      Button[] buttons = new Button[] { 
         new Button("SunDay"), 
         new Button("MonDay"), 
         new Button("TuesDay"), 
         new Button("WednesDay"), 
         new Button("ThursDay"), 
         new Button("FriDay"), 
         new Button("SaturDay")  
      };   
      //Creating a Tile Pane 
      TilePane tilePane = new TilePane();   
       
      //Setting the orientation for the Tile Pane 
      tilePane.setOrientation(Orientation.HORIZONTAL); 
       
      //Setting the alignment for the Tile Pane 
      tilePane.setTileAlignment(Pos.CENTER_LEFT); 
       
      //Setting the preferred columns for the Tile Pane 
      tilePane.setPrefRows(4);  
      
      //Retrieving the observable list of the Tile Pane 
      ObservableList list = tilePane.getChildren(); 
       
      //Adding the array of buttons to the pane 
      list.addAll(buttons);
	  
      //Creating a scene object 
      Scene scene = new Scene(tilePane);  
      
      //Setting title to the Stage 
      stage.setTitle("Tile 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 TilePaneExample.java 
java TilePaneExample

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

TilePane
javafx_layout_panes.htm
广告