標題窗格是具有標題的面板,窗格可以開啟和關閉。我們可以新增節點(如UI控制元件或影象)和一組元素到窗格。
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.CheckBox;
import javafx.scene.control.TitledPane;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;
public class Main extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) {
Scene scene = new Scene(new Group(), 350, 250);
TitledPane titledPane = new TitledPane("My Title", new CheckBox("OK"));
HBox hbox = new HBox(10);// by w w W .y i I b AI. c o M
hbox.setPadding(new Insets(20, 0, 0, 20));
hbox.getChildren().setAll(titledPane);
Group root = (Group) scene.getRoot();
root.getChildren().add(hbox);
stage.setScene(scene);
stage.show();
}
}
上面的程式碼生成以下結果。
要建立一個TitledPane
控制元件,請呼叫其建構函式。
以下程式碼使用TitledPane
的兩個引數建構函式。它將標題窗格命名為「我的窗格」,並用一個Button
控制元件填充窗格。
TitledPane tp = new TitledPane("我的窗格", new Button("Button"));
接下來的幾行做了與上面的程式碼相同的事情,但不使用帶引數的建構函式。 它建立一個帶有預設空建構函式的TitledPane
,然後再設定控制元件的標題和內容。
TitledPane tp = new TitledPane();
tp.setText("My Titled Pane");
tp.setContent(new Button("Button"));
以下程式碼使用GridPane
在TitledPane
中布局控制元件。
TitledPane gridTitlePane = new TitledPane();
GridPane grid = new GridPane();
grid.setVgap(4);
grid.setPadding(new Insets(5, 5, 5, 5));
...
gridTitlePane.setText("Grid");
gridTitlePane.setContent(grid);
我們可以定義標題窗格的開啟和關閉方式。預設情況下,所有標題窗格都是可折疊的,開啟和關閉操作都是動畫。
setCollapsible(false)
關閉Collapsible
狀態。setAnimated(false)
停止動畫。
TitledPane tp = new TitledPane();
tp.setCollapsible(false);//remove closing action
tp.setAnimated(false);//stop animating
完整的原始碼實現如下 -
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.CheckBox;
import javafx.scene.control.TitledPane;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;
public class Main extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) {
Scene scene = new Scene(new Group(), 450, 250);
TitledPane titledPane = new TitledPane("我的標題", new CheckBox("確定?"));
titledPane.setCollapsible(false);// remove closing action
titledPane.setAnimated(false);// stop animating
HBox hbox = new HBox(10);
hbox.setPadding(new Insets(20, 0, 0, 20));
hbox.getChildren().setAll(titledPane);
Group root = (Group) scene.getRoot();
root.getChildren().add(hbox);
stage.setScene(scene);
stage.show();
}
}
上面的程式碼生成以下結果。