我试图弄清楚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?
//
感谢您的任何指示。
答案 0 :(得分:1)