我创建了一个复选框,
Group g1 = new Group();
CheckBox chk1 = new CheckBox("Check-box");
chk1.setIndeterminate(true);
g1.getChildren().add(chk1);
root.getChildren().add(g1);
根据https://docs.oracle.com/javafx/2/api/javafx/scene/control/CheckBox.html
我可以在章节中看到方法setLayoutX
和setLayoutY
:Methods inherited from class javafx.scene.Node
但是,当我尝试设置我的复选框的位置时:
chk1.setLayoutX();
我收到了一个错误:
Method "setLayoutX" in Class Node cannot be applied to the given class.
有谁能告诉我如何解决这个问题以及如何设置复选框的位置?