当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。