标题窗格是具有标题的面板,窗格可以打开和关闭。我们可以添加节点(如UI控件或图像)和一组元素到窗格。

  1. import javafx.application.Application;
  2. import javafx.geometry.Insets;
  3. import javafx.scene.Group;
  4. import javafx.scene.Scene;
  5. import javafx.scene.control.CheckBox;
  6. import javafx.scene.control.TitledPane;
  7. import javafx.scene.layout.HBox;
  8. import javafx.stage.Stage;
  9. public class Main extends Application {
  10. public static void main(String[] args) {
  11. launch(args);
  12. }
  13. @Override
  14. public void start(Stage stage) {
  15. Scene scene = new Scene(new Group(), 350, 250);
  16. TitledPane titledPane = new TitledPane("My Title", new CheckBox("OK"));
  17. HBox hbox = new HBox(10);
  18. hbox.setPadding(new Insets(20, 0, 0, 20));
  19. hbox.getChildren().setAll(titledPane);
  20. Group root = (Group) scene.getRoot();
  21. root.getChildren().add(hbox);
  22. stage.setScene(scene);
  23. stage.show();
  24. }
  25. }

image.png

创建标题窗格

要创建一个TitledPane控件,请调用其构造函数。
以下代码使用TitledPane的两个参数构造函数。它将标题窗格命名为“我的窗格”,并用一个Button控件填充窗格。

  1. TitledPane tp = new TitledPane("我的窗格", new Button("Button"));

image.png
接下来的几行做了与上面的代码相同的事情,但不使用带参数的构造函数。 它创建一个带有默认空构造函数的TitledPane,然后再设置控件的标题和内容。

  1. TitledPane tp = new TitledPane();
  2. tp.setText("My Titled Pane");
  3. tp.setContent(new Button("Button"));

image.png

以下代码使用GridPane在TitledPane中布局控件。

  1. TitledPane titledPane = new TitledPane();
  2. GridPane grid = new GridPane();
  3. grid.setVgap(4);
  4. grid.setPadding(new Insets(5, 5, 5, 5));
  5. grid.add(new Button("按钮1"),0,0);
  6. grid.add(new Button("按钮2"),0,1);
  7. grid.add(new Button("按钮3"),1,0);
  8. grid.add(new Button("按钮4"),1,1);
  9. titledPane.setText("Grid");
  10. titledPane.setContent(grid);

image.png
我们可以定义标题窗格的打开和关闭方式。默认情况下,所有标题窗格都是可折叠的,打开和关闭操作都是动画。
setCollapsible(false)关闭Collapsible状态。setAnimated(false)停止动画。

  1. TitledPane tp = new TitledPane();
  2. tp.setCollapsible(false);//remove closing action
  3. tp.setAnimated(false);//stop animating

image.png
完整的源代码实现如下 -

  1. import javafx.application.Application;
  2. import javafx.geometry.Insets;
  3. import javafx.scene.Group;
  4. import javafx.scene.Scene;
  5. import javafx.scene.control.CheckBox;
  6. import javafx.scene.control.TitledPane;
  7. import javafx.scene.layout.HBox;
  8. import javafx.stage.Stage;
  9. public class Main extends Application {
  10. public static void main(String[] args) {
  11. launch(args);
  12. }
  13. @Override
  14. public void start(Stage stage) {
  15. Scene scene = new Scene(new Group(), 450, 250);
  16. TitledPane titledPane = new TitledPane("我的标题", new CheckBox("确定?"));
  17. titledPane.setCollapsible(false);// remove closing action
  18. titledPane.setAnimated(false);// stop animating
  19. HBox hbox = new HBox(10);
  20. hbox.setPadding(new Insets(20, 0, 0, 20));
  21. hbox.getChildren().setAll(titledPane);
  22. Group root = (Group) scene.getRoot();
  23. root.getChildren().add(hbox);
  24. stage.setScene(scene);
  25. stage.show();
  26. }
  27. }

image.png