API版本AnchorPane.topAnchor FXML属性?

时间:2014-02-12 17:45:53

标签: javafx-2 fxml javafx-8

我试图弄清楚JavaFX API调用 - 相当于FXML AnchorPane.topAnchor(以及bottom,right,left anchors)属性。通常,FXML属性似乎是对象上的属性,但似乎没有AnchorPane类型属性或返回此类对象的任何其他属性。

例如,如果我有以下FXML

<BorderPane fx:id="borderPane" AnchorPane.bottomAnchor="4.0"
    AnchorPane.leftAnchor="4.0" 
    AnchorPane.rightAnchor="4.0"
    AnchorPane.topAnchor="30.0"> .... more FXML here

设置anchorpane锚点的相关Java API调用是什么?

e.g。

BorderPane borderPane = new BorderPane();
//
// What method calls on borderPane would set the anchors?
//

感谢您的任何指示。

  • chooks

1 个答案:

答案 0 :(得分:1)

AnchorPane.setLeftAnchor(borderPane, 4.0); 

请参阅Introduction to FXML, static properties section.