如何在TabPane中隐藏TabBar?

时间:2015-10-31 23:04:56

标签: javafx tabs fxml

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

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

此后的TabPane外观 -

enter image description here

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

3 个答案:

答案 0 :(得分:7)

使用带隐藏标签的TabPane作为向导式界面是一个有趣的想法,我没有想到并认为我喜欢。

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

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

这是一个SSCCE。在此我给了选项卡窗格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);
    }
}

标签窗格-AS-wizard.css:

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

enter image description here

答案 1 :(得分:1)

对您的答案稍作修正:

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

答案 2 :(得分:0)

这样做的简单方法是更改​​颜色以使其与背景同步

.tab-pane {
    -fx-tab-max-height: 0;

} 

.tab-pane .tab-header-area .tab-header-background {
    -fx-background-color: #843487;//your background colour code

}
.tab-pane .tab
{
    -fx-background-color: #843487;//your background colour code

}