我正在尝试使用TabPane
构建下一个/上一个窗口。我决定使用TabPane
,因为在 SceneBuilder 中易于使用和设计。在应用程序启动时,我暂时使用它来隐藏 TabBar -
tabPane.setTabMinHeight(-10);
tabPane.setTabMaxHeight(-10);
TabPane在此之后的外观-
如您所见, 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 ;
}
关于javafx - 如何在TabPane中隐藏TabBar?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33457546/