9

我正在尝试为 Web 应用程序开发 GUI,并且我想设置一个 TabPane,其中选项卡放置在左侧,使选项卡标题保持水平。我已经找到了如何将选项卡放在左侧,但是经过多次搜索后,我没有成功将标题设置为右对齐。它们仍然是垂直的,难以阅读。

我怎么能解决这个问题?

4

7 回答 7

8

您可以使用 CSS 自定义选项卡和选项卡标签:

.tab *.tab-label {
    -fx-rotate: 90;
}

.tab {
    -fx-padding: 3em 0.5em 3em 0.5em;
}
于 2013-09-13T15:42:38.223 回答
6

对此有一个开放的功能请求: RT-19547 New API to rotate text on tabpane tabs

该功能请求目前处于开放状态,但尚未计划实施。您可以对功能请求进行投票或评论,并链接回此 StackOverflow 帖子以注册您对该功能的兴趣。

要自己实现这一点,您需要创建一个新的 TabPane 皮肤或修补现有的 TabPane 皮肤,这可能并非易事。

于 2013-05-23T18:01:31.397 回答
2

在您的代码中添加此方法并将您的 tabPane 传递给它:

void setTabPaneLeftTabsHorizontal(TabPane tabPane){

    tabPane.setSide(Side.LEFT);
    tabPane.setRotateGraphic(true);        

    Label l = null;
    StackPane stp = null;
    for(Tab t : tabPane.getTabs()){
        l = new Label(t.getText());
        l.setRotate(90);
        stp = new StackPane(new Group(l));
        stp.setRotate(90);
        t.setGraphic(stp);
        t.setText("");
    }
    
    tabPane.setTabMinHeight(100);
    tabPane.setTabMaxHeight(100);
}
于 2021-05-04T06:59:50.097 回答
1

您可以使用以下方法创建标签页眉

private StackPane createTabHeader(String text, Node graphics){
        return new StackPane(new Group(new Label(text, graphics)));
}

然后在您的代码中调用它,如下所示:

Tab tab = new Tab();
tab.setGraphic(createTabHeader("TEXT", new ImageView("IMAGE_PATH")));

请注意,您需要设置选项卡的宽度和高度,因为它们不会自动缩放。

TabPane tabPane = new TabPane(tab);
tabPane.setSide(Side.LEFT);
tabPane.setTabMinWidth(50);
tabPane.setTabMaxWidth(50);
tabPane.setTabMinHeight(200);
tabPane.setTabMaxHeight(200);
于 2017-01-12T01:52:41.747 回答
1

哦,我记得我以前遇到过这个问题,只需在 tabHeader 内添加一个 StackPane、VBox o Hbox 以及您可能需要的所有组件,它们不会遵循选项卡方向。

于 2017-02-24T02:47:07.127 回答
1
// Firstly
tabPane.setSide(Side.LEFT);
tabPane.setRotateGraphic(true);        

Label l = new Label("Titel Tab1");
l.setRotate(90);
StackPane stp = new StackPane(new Group(l));
stp.setRotate(90);
tab1.setGraphic(stp);

l = new Label("Titel Tab2");
l.setRotate(90);
stp = new StackPane(new Group(l));
stp.setRotate(90);
tab2.setGraphic(stp);

tabPane.setTabMinHeight(100);
tabPane.setTabMaxHeight(100);
于 2017-02-02T19:14:43.860 回答
0

有另一种解决方案,在css上设置最小宽度和高度,在fxml上添加图形元素

-fx-tab-min-width:30;    
-fx-tab-max-width:30;    
-fx-tab-min-height:150;    
-fx-tab-max-height:150;

 <Tab closable="false">
           <graphic>
              <Pane prefHeight="76.0" prefWidth="30.0">
                 <children>
                    <Label layoutX="-35.0" layoutY="23.0" prefHeight="30.0" prefWidth="130.0" text="User">
                       <font>
                          <Font name="SansSerif Regular" size="14.0" />
                       </font></Label>
                 </children>
              </Pane>
           </graphic>
        </Tab>
于 2017-02-24T01:52:36.317 回答