对齐Javafx布局中的按钮

时间:2012-12-12 12:53:03

标签: java javafx-2

我想对齐我的按钮,使第一个按钮位于屏幕左侧,另外两个按钮位于右侧。我目前正在使用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");


    }

}

任何帮助将不胜感激 感谢

1 个答案:

答案 0 :(得分:3)

将外部HBox(hbox)的对齐设置为LEFT,将内部HBox(hbox1)的对齐设置为RIGHT。

然后你可以在左边有内部内容,在右边有内在内容。

*编辑:现在解决了你的问题。停止使用Group并将borderpane直接添加到Scene:

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