0

最初のボタンが画面の左側にあり、他の 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");


    }

}

どんな助けでも感謝しますありがとう

4

1 に答える 1

3

外側の HBox (hbox) の配置を LEFT に設定し、内側の HBox (hbox1) の配置を RIGHT に設定します。

次に、外側のコンテンツを左側に、内側のコンテンツを右側に配置できます。

*編集:今あなたの問題を手に入れました。Group の使用を停止し、borderpane をシーンに直接追加します。

Scene scene = new Scene(borderpane,800,600);
于 2012-12-12T13:19:31.610 に答える