JavaFX:对齐包含图形的标签

时间:2017-01-11 14:46:40

标签: javafx javafx-8

有没有办法让HBox中包含的标签在与基线对齐时忽略图形?

我尝试使用文字对齐标签。我得到的是带有图形的标签与一行中其他标签的垂直偏移对齐:

<HBox alignment="BASELINE_LEFT" fillHeight="false">
  <children>
    <Button text="Button" />
    <Label text="Label" />
    <Button text="Button">
      <font><Font size="12.0" /></font>
      <graphic>
        <Rectangle arcHeight="5.0" arcWidth="5.0" fill="DODGERBLUE" height="15.0" stroke="BLACK" strokeType="INSIDE" width="15.0" />
      </graphic>
    </Button>
  </children>
</HBox>

0 个答案:

没有答案