當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaFX 類 Pos用法及代碼示例


Pos類是JavaFX的一部分。 Pos類包含說明水平和垂直位置或對齊方式的值。 Pos類繼承Enum類。

常用方法:

方法 說明
getHpos() 返回水平對齊方式。
getVpos() 返回垂直對齊方式。
valueOf(String n) 返回名稱為指定字符串的Pos對象。
values() 返回一個包含所有Pos值的數組。

以下程序說明了Pos類的用法:


  1. Java程序創建磁貼並添加指定的Pos值作為其對齊方式:在此程序中,我們將創建一個名為tile_pane的TilePane。將名為label的Label和一些按鈕添加到tile_pane。使用setAlignment()函數設置tile_pane的對齊方式。將tile_pane的對齊方式設置為Pos值TOP_LEFT。將tile_pane添加到場景,並將場景添加到舞台,並調用show()函數以顯示最終結果。
    // Java Program to create a tilepane and add 
    // a specified Pos value as its alignment 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.*; 
    import javafx.scene.layout.*; 
    import javafx.stage.Stage; 
    import javafx.geometry.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.canvas.*; 
    import javafx.scene.text.*; 
    import javafx.scene.Group; 
    import javafx.scene.shape.*; 
      
    public class Pos_1 extends Application { 
      
        // launch the application 
        public void start(Stage stage) 
        { 
      
            try { 
      
                // set title for the stage 
                stage.setTitle("Pos"); 
      
                // create a label 
                Label label = new Label("this is Pos example"); 
      
                // create a Tile pane 
                TilePane tile_pane = new TilePane(label); 
      
                // create and add buttons to tilepane 
                for (int i = 1; i <= 7; i++) { 
                    tile_pane.getChildren().add(new Button("Button " + i)); 
                } 
      
                // set Alignment of pane 
                tile_pane.setAlignment(Pos.TOP_LEFT); 
      
                // create a scene 
                Scene scene = new Scene(tile_pane, 400, 300); 
      
                // set the scene 
                stage.setScene(scene); 
      
                stage.show(); 
            } 
      
            catch (Exception e) { 
      
                System.out.println(e.getMessage()); 
            } 
        } 
      
        // Main Method 
        public static void main(String args[]) 
        { 
      
            // launch the application 
            launch(args); 
        } 
    }

    輸出:

  2. Java程序,用於創建TilePane和包含Pos的不同值的組合框:在此程序中,我們將創建一個名為tile_pane的TilePane。將名為label的Label和一些按鈕添加到tile_pane。使用setAlignment()函數設置tile_pane的對齊方式。我們將tile_pane的對齊方式設置為Pos值BASELINE_CENTER。將所有Pos值的名稱存儲在String數組中。現在創建一個組合框,其中將包含Pos值的名稱,還創建一個Action事件來處理組合框事件。事件處理程序會將圖塊的對齊方式設置為所選的pos值。現在創建一個VBox並將磁貼和組合框添加到vbox。最後,將vbox添加到場景中,然後將場景添加到舞台中,並調用show()函數以顯示最終結果。
    // Java Program to create a TilePane and  
    // a combobox that contains different  
    // values of Pos 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.*; 
    import javafx.scene.layout.*; 
    import javafx.stage.Stage; 
    import javafx.geometry.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.canvas.*; 
    import javafx.scene.text.*; 
    import javafx.scene.Group; 
    import javafx.scene.shape.*; 
    import javafx.event.ActionEvent; 
    import javafx.event.EventHandler; 
    import javafx.collections.*; 
       
    public class Pos_2 extends Application { 
       
    // launch the application 
    public void start(Stage stage) 
    { 
      
        try { 
      
            // set title for the stage 
            stage.setTitle("Pos Class"); 
      
            // create a label 
            Label label = new Label("This is Pos Class Example"); 
      
            // create a Tile pane 
            TilePane tile_pane = new TilePane(label); 
      
            // create and add buttons to tilepane 
            for (int i = 1; i <= 7; i++) { 
      
                tile_pane.getChildren().add(new Button("Button " + i)); 
            } 
      
            // set Alignment of pane 
            tile_pane.setAlignment(Pos.BASELINE_CENTER); 
      
            // pos names 
            String pos_name[] = {"BASELINE_CENTER", "BASELINE_LEFT", 
                                 "BASELINE_RIGHT", "BOTTOM_CENTER",  
                                 "BOTTOM_LEFT", "BOTTOM_RIGHT",  
                                 "CENTER", "CENTER_LEFT", "CENTER_RIGHT", 
                                 "TOP_CENTER", "TOP_LEFT", "TOP_RIGHT"}; 
      
            // Create a combo box 
            ComboBox combo_box =  
              new ComboBox(FXCollections.observableArrayList(pos_name)); 
      
            // Create action event 
            EventHandler<ActionEvent> event = 
            new EventHandler<ActionEvent>() { 
      
                public void handle(ActionEvent e) 
                { 
      
                    // set Alignement of the TilePane 
                    tile_pane.setAlignment(Pos.valueOf( 
                         (String)combo_box.getValue())); 
                } 
            }; 
      
            // Set on action 
            combo_box.setOnAction(event); 
      
            // create a VBox 
            VBox vbox = new VBox(30, combo_box, tile_pane); 
      
            // set Alignemnet 
            vbox.setAlignment(Pos.CENTER); 
      
            // create a scene 
            Scene scene = new Scene(vbox, 400, 300); 
      
            // set the scene 
            stage.setScene(scene); 
      
            stage.show(); 
        } 
      
        catch (Exception e) { 
      
            System.out.println(e.getMessage()); 
        } 
    } 
      
    // Main Method 
    public static void main(String args[]) 
    { 
      
        // launch the application 
        launch(args); 
    } 
    }

    輸出:

注意:以上程序可能無法在在線IDE中運行,請使用離線編譯器。

參考: https://docs.oracle.com/javase/8/javafx/api/javafx/geometry/Pos.html



相關用法


注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 JavaFX | Pos Class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。