gpt4 book ai didi

javafx - 如何在TabPane中隐藏TabBar?

转载 作者:行者123 更新时间:2023-12-04 11:03:44 24 4
gpt4 key购买 nike

我正在尝试使用TabPane构建下一个/上一个窗口。我决定使用TabPane,因为在 SceneBuilder 中易于使用和设计。在应用程序启动时,我暂时使用它来隐藏 TabBar -

tabPane.setTabMinHeight(-10);
tabPane.setTabMaxHeight(-10);

TabPane在此之后的外观-

enter image description here

如您所见, TabBar (在标题栏下方)仍然保留了一小部分。如何完全隐藏它,以便我的 TabPane看起来像普通的 Pane,但其所有功能都完整无缺?

最佳答案

使用带有隐藏选项卡的TabPane作为向导类型的界面是一个有趣的想法,我没想到也觉得自己喜欢。

您可以在外部CSS文件中隐藏以下选项卡:

.tab-pane {
-fx-tab-max-height: 0 ;
}
.tab-pane .tab-header-area {
visibility: hidden ;
}

这是SSCCE。在此,我为选项卡 Pane 提供了CSS类 wizard
import javafx.application.Application;
import javafx.beans.binding.Bindings;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.Tab;
import javafx.scene.control.TabPane;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;

public class TabPaneAsWizard extends Application {

@Override
public void start(Stage primaryStage) {
TabPane tabPane = new TabPane();
tabPane.getStyleClass().add("wizard");
for (int i = 1; i<=10; i++) {
tabPane.getTabs().add(createTab(i));
}
Button previous = new Button("Previous");
previous.setOnAction(e ->
tabPane.getSelectionModel().select(tabPane.getSelectionModel().getSelectedIndex()-1));
previous.disableProperty().bind(tabPane.getSelectionModel().selectedIndexProperty().lessThanOrEqualTo(0));
Button next = new Button("Next");
next.setOnAction(e ->
tabPane.getSelectionModel().select(tabPane.getSelectionModel().getSelectedIndex()+1));
next.disableProperty().bind(
tabPane.getSelectionModel().selectedIndexProperty().greaterThanOrEqualTo(
Bindings.size(tabPane.getTabs()).subtract(1)));

HBox buttons = new HBox(20, previous, next);
buttons.setAlignment(Pos.CENTER);

BorderPane root = new BorderPane(tabPane, null, null, buttons, null);
Scene scene = new Scene(root, 600, 600);
scene.getStylesheets().add("tab-pane-as-wizard.css");
primaryStage.setScene(scene);
primaryStage.show();
}

private Tab createTab(int id) {
Tab tab = new Tab();
Label label = new Label("This is step "+id);
tab.setContent(label);
return tab ;
}

public static void main(String[] args) {
launch(args);
}
}

tab-pane-as-wizard.css:
.wizard {
-fx-tab-max-height: 0 ;
}
.wizard .tab-header-area {
visibility: hidden ;
}

enter image description here

关于javafx - 如何在TabPane中隐藏TabBar?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33457546/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com