gpt4 book ai didi

java - 对齐 Javafx 布局中的按钮

转载 作者:行者123 更新时间:2023-12-02 00:06:10 24 4
gpt4 key购买 nike

我想对齐按钮,使第一个按钮位于屏幕左侧,另外两个按钮位于屏幕右侧。我目前正在使用 HBox 尝试定位它们,但我似乎无法弄清楚如何正确放置它们。下面的代码是我现在正在使用的。

import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Priority;
import javafx.stage.Stage;

public class ButtonTest extends Application {
private Button min, close, openfile;
public static void main(String[] args){
launch(args);
}

@Override
public void start(final Stage stage) throws Exception {
stage.setTitle("Button Test");
Group root = new Group();
BorderPane borderpane = new BorderPane();
setUpButtons();
HBox hbox = new HBox();
hbox.setSpacing(10);
hbox.getChildren().add(openfile);
HBox hbox1 = new HBox();
hbox1.setAlignment(Pos.CENTER_RIGHT);
hbox1.getChildren().addAll(min, close);

hbox.getChildren().add(hbox1);
HBox.setHgrow(hbox1, Priority.ALWAYS);
borderpane.setTop(hbox);
root.getChildren().add(borderpane);
Scene scene = new Scene(root,800,600);
stage.setFullScreen(true);
scene.getStylesheets().add("button.css");
stage.setScene(scene);
stage.show();

}

private void setUpButtons() {
close = new Button("x");
close.setId("closeBtn");

min = new Button("_");
min.setId("minBtn");

openfile = new Button("Open file");
openfile.setId("openFileBtn");


}

}

如有任何帮助,我们将不胜感激谢谢

最佳答案

将外部 HBox (hbox) 的对齐方式设置为左,将内部 HBox (hbox1) 的对齐方式设置为右。

然后您可以将外部内容放在左侧,将内部内容放在右侧。

*编辑:现在得到你的问题了。停止使用 Group 并将 borderpane 直接添加到场景中:

Scene scene = new Scene(borderpane,800,600);

关于java - 对齐 Javafx 布局中的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13840244/

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