gpt4 book ai didi

java - 如何在 JavaFX 中设置按钮的坐标?

转载 作者:行者123 更新时间:2023-12-01 16:54:09 25 4
gpt4 key购买 nike

 public void start(Stage primaryStage) {
primaryStage.setTitle("Hello World!");
ScrollBar sc = new ScrollBar();
sc.setMin(0);
sc.setMax(100);

Button btn = new Button();
btn.relocate(150, 100);
btn.setText("Launch Keyboard lights");
btn.setOnAction(new EventHandler<ActionEvent>() {

@Override
public void handle(ActionEvent event) {
System.out.println("Hello World!");
}
});

StackPane root = new StackPane();

root.getChildren().add(btn);
root.getChildren().add(sc);

primaryStage.setScene(new Scene(root, 300, 250));
primaryStage.show();
}

我尝试使用 btn.setXlayout 和 y,但它也不起作用。我认为这是因为 (new Scene(root, 200, 250)); 的根但我应该写什么才能让按钮进入新位置?

最佳答案

StackPane 可能不是您想要的 - 它用于将控件堆叠在彼此之上(z 轴),但控件本身根据 Alignment 定位StackPane 属性。

您可能正在寻找类似 AnchorPane 的东西,它允许您将控件锚定到 Pane 的一侧或多侧。或者,您可以使用 JavaFX 中提供的许多其他布局 Pane 之一,具体取决于您想要实现的布局。

看看this tutorial了解各种可用的布局 Pane 。另外,您可能想尝试一下 Scene Builder至少对于原型(prototype)设计来说是这样。

关于java - 如何在 JavaFX 中设置按钮的坐标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35187978/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com