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


JavaFX 類 SplitPane用法及代碼示例


SplitPane類是JavaFX的一部分。 SplitPane類是一個控件,其中包含兩個或多個由分隔符分隔的邊。使用者可以拖動側麵,以便為其中一個側麵提供更多空間,從而使另一側縮小相同的大小。 SplitPane類繼承Control類。

類的構造函數:

  • SplitPane():創建一個新的SplitPane。
  • SplitPane(Node… n):使用指定的節點創建一個SplitPane。

常用方法:


方法 說明
getItems() 返回拆分窗格的項目。
getOrientation() 返回拆分窗格的方向。
setDividerPosition(int dividerIndex, double position) 設置指定索引處分頻器的位置。
setDividerPositions(double… p) 設置分隔線的位置。
setOrientation(Orientation o) 設置分割窗格的方向。

以下示例程序旨在說明SplitPane類的用法:

  1. Java程序來創建一個拆分窗格並為其添加標簽:
    • 在此程序中,我們將創建一個SplitPane名稱split_pane。
    • 使用getItems().add()函數創建標簽並將其添加到拆分窗格。
    • 將split_pane添加到場景並將場景添加到舞台。
    • 調用show()函數以顯示最終結果。
    // Java program to create a split pane 
    // and add labels to it 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.*; 
    import javafx.scene.layout.*; 
    import javafx.stage.Stage; 
    import javafx.scene.layout.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.text.*; 
    import javafx.geometry.*; 
    import javafx.scene.layout.*; 
    import javafx.scene.shape.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.*; 
    import java.io.*; 
    import javafx.scene.image.*; 
      
    public class SplitPane_1 extends Application { 
      
        // launch the application 
        public void start(Stage stage) 
        { 
      
            try { 
      
                // set title for the stage 
                stage.setTitle("Split Pane"); 
      
                // create a splitpane 
                SplitPane split_pane = new SplitPane(); 
      
                // create labels and add it to splitPane 
                for (int i = 1; i < 5; i++) { 
      
                    split_pane.getItems().add(new Label("\tLabel no " 
                                                        + i + "\t")); 
                } 
      
                // create a scene 
                Scene scene = new Scene(split_pane, 500, 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程序設置其方向並為其添加標簽:
    • 在此程序中,我們將創建一個SplitPane名稱split_pane。
    • 使用getItems().add()函數創建標簽並將其添加到拆分窗格。
    • 將split_pane添加到場景並將場景添加到舞台。
    • 使用setOrientation()函數設置split_pane的方向。
    • 調用show()函數以顯示最終結果。
    // Java program to create a split pane, set 
    // its orientation and add labels to it 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.*; 
    import javafx.scene.layout.*; 
    import javafx.stage.Stage; 
    import javafx.scene.layout.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.text.*; 
    import javafx.geometry.*; 
    import javafx.scene.layout.*; 
    import javafx.scene.shape.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.*; 
    import java.io.*; 
    import javafx.scene.image.*; 
      
    public class SplitPane_2 extends Application { 
      
        // launch the application 
        public void start(Stage stage) 
        { 
      
            try { 
      
                // set title for the stage 
                stage.setTitle("Split Pane"); 
      
                // create a splitpane 
                SplitPane split_pane = new SplitPane(); 
      
                // create labels and add it to splitPane 
                for (int i = 1; i < 5; i++) { 
      
                    // create a label 
                    Label label = new Label("\tLabel no " + i + "\t"); 
      
                    // set preferred height 
                    label.setPrefHeight(50); 
      
                    split_pane.getItems().add(label); 
                } 
      
                // set Orientation of splitpane 
                split_pane.setOrientation(Orientation.VERTICAL); 
      
                // create a scene 
                Scene scene = new Scene(split_pane, 500, 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/scene/control/SplitPane.html



相關用法


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