有没有办法让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>