当图标超过22.0宽度/高度时,JavaFX选项卡会折叠

时间:2016-07-04 23:03:27

标签: javafx icons tabpanel

22.0高度

enter image description here

当ImageView高度超过22.0时,如何避免此结果?

enter image description here

我根本不使用css。我在ImageView的布局下拉菜单中创建了这个Bounds的东西,它甚至不可编辑,22x22似乎是最大尺寸或其他东西,我尝试更改Tab min高度,但它是同样的问题。

enter image description here

<TabPane fx:id="tabs" tabClosingPolicy="UNAVAILABLE" tabMinHeight="50.0" tabMinWidth="150.0" BorderPane.alignment="CENTER">
    <tabs>
      <Tab fx:id="tabProd" text="TEXT" closable="false">
        <graphic>
            <ImageView fitHeight="40.0" fitWidth="40.0">
                <image>
                    <Image url="framesFX_icons/production.png" />
                </image>
            </ImageView>
        </graphic>
           <content>
              ...
           </content>
      </Tab>
    </tabs>
  </TabPane>

1 个答案:

答案 0 :(得分:2)

tabMaxHeight设置为大(但低于Double.MAX_VALUE)似乎可以解决它,所以我猜它是一个错误?

无论如何 - 将最大高度设置为100左右应该足够了。

编辑:可以找到错误报告here