2016-09-28 32 views
0

是否可以直接在目標節點中設置percentWidth?我試過,但即時得到許多錯誤,如果我這樣做:FXML直接在目標節點上設置percentWidth

<GridPane> 
    <Button fx:id="node" id="node" text="fooBar" 
    GridPane.columnIndex="1" GridPane.hgrow="always" GridPane.percentWidth="25"/> 
</GridPane> 

是不是:

<columnConstraints> 
      <ColumnConstraints percentWidth="25" /> 
    </columnConstraints>  

回答

2

號沒有靜態setPercentWidth(Node, ...)方法GridPane(見docs)。

無論如何,這並不是真的有意義;它將使您能夠在不同的節點上設置不同的百分比寬度,即使它們在同一列中。百分比寬度本質上是列的屬性。

+0

我明白了。你非常感謝你的回答。現在有道理。 – Asperger