📜  JavaFX | StackPane 类

📅  最后修改于: 2022-05-13 01:55:42.240000             🧑  作者: Mango

JavaFX | StackPane 类

StackPane 类是 JavaFX 的一部分。 StackPane 类以堆栈的形式布置其子级。新节点放置在 StackPane 中前一个节点的顶部。 StackPane 类继承Pane Class

类的构造函数:

  1. StackPane() :创建一个新的空 StackPane。
  2. StackPane(Node... c) : 创建一个具有指定节点的新 StackPne。

常用方法:

MethodExplanation
getAlignment()Returns the alignment of the StackPane.
getAlignment(Node c)Returns the node’s alignment.
getMargin(Node c)Returns the insets of the node.
setAlignment(Node n, Pos v)Sets the alignment of the node which is a part of StackPane.
setAlignment(Pos v)Sets the alignment of the StackPane.
setMargin(Node n, Insets v)Sets the margin of the node which is a part of StackPane.

下面的程序说明了 StackPane 类的使用:

  1. 创建 StackPane、添加圆形、标签、矩形并将其添加到舞台的Java程序:在此程序中,我们将创建一个名为label的 Label、一个名为rectangle的 Rectangle 和一个名为circle的 Circle。然后使用setFont()函数设置 StackPane 的字体。现在使用setFill()函数设置矩形和圆形的填充。然后我们将创建一个名为stack_pane的 StackPane 并添加矩形、圆形和标签。创建一个场景并将 stack_pane 添加到场景中。将此场景添加到舞台并调用show()函数以显示最终结果。
    // Java Program to create a StackPane,
    // add circle, label, rectangle
    // and add it to the stage
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.layout.*;
    import javafx.stage.Stage;
    import javafx.event.ActionEvent;
    import javafx.scene.paint.*;
    import javafx.scene.canvas.*;
    import javafx.scene.text.*;
    import javafx.scene.Group;
    import javafx.scene.shape.*;
      
    public class StackPane_1 extends Application {
      
        // launch the application
        public void start(Stage stage)
        {
      
            try {
      
                // set title for the stage
                stage.setTitle("StackPane");
      
                // create a label
                Label label = new Label("this is StackPane example");
      
                // set Font for label
                label.setFont(new Font(30));
      
                // create a circle
                Circle circle = new Circle(100, 100, 70);
      
                // set fill for  the circle
                circle.setFill(Color.RED);
      
                // create Rectangle
                Rectangle rectangle = new Rectangle(100, 100, 180, 160);
      
                // set fill for rectangle
                rectangle.setFill(Color.BLUE);
      
                // create a stack pane
                StackPane stack_pane = new StackPane(rectangle, circle, label);
      
                // create a scene
                Scene scene = new Scene(stack_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. 创建 StackPane 的Java程序,添加圆形、标签、矩形,然后设置 StackPane 的对齐方式并将其添加到舞台:在此程序中,我们将创建一个名为label的 Label、一个名为rectangle的 Rectangle 和一个名为circle的 Circle。然后使用setFont()函数设置 StackPane 的字体。使用setFill()函数设置矩形和圆形的填充。现在创建一个名为stack_pane的 StackPane 并添加矩形、圆形和标签。使用setAlignment()函数设置 stack_pane 的对齐方式。创建一个场景并将 stack_pane 添加到场景中。最后将此场景添加到舞台并调用show()函数以显示结果。
    // Java Program to create a StackPane, 
    // add the circle, label, rectangle and
    // then set the alignment of the StackPane
    // and add it to the stage
    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 StackPane_2 extends Application {
      
        // launch the application
        public void start(Stage stage)
        {
      
            try {
      
                // set title for the stage
                stage.setTitle("StackPane");
      
                // create a label
                Label label = new Label("this is StackPane example");
      
                // set Font for label
                label.setFont(new Font(30));
      
                // create a circle
                Circle circle = new Circle(100, 100, 70);
      
                // set fill for  the circle
                circle.setFill(Color.RED);
      
                // create Rectangle
                Rectangle rectangle = new Rectangle(100, 100, 180, 160);
      
                // set fill for rectangle
                rectangle.setFill(Color.BLUE);
      
                // create a stack pane
                StackPane stack_pane = new StackPane(rectangle, circle, label);
      
                // set alignement for the stack pane
                stack_pane.setAlignment(Pos.TOP_CENTER);
      
                // create a scene
                Scene scene = new Scene(stack_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);
        }
    }
    

    输出:

    注意:以上程序可能无法在在线 IDE 中运行,请使用离线编译器。

    参考: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/StackPane.html