gpt4 book ai didi

java - HBox 未填充边框中心的可用空间

转载 作者:行者123 更新时间:2023-12-01 09:44:40 26 4
gpt4 key购买 nike

我放置了 HBox进入 BorderPane 的中心,那就是唯一直接NodeDialogPane上我的Dialog通过使用此代码:

    public GameDialog(Player[] players) {
setTitle("Spiel eintragen");
setWidth(WIDTH);
setHeight(HEIGHT);

createLeftBox();
createRightBox(players);

// Center
this.center = new HBox(leftBox, rightBox);
center.setStyle("-fx-border-color: #00ff00;");
center.getChildren()
.forEach(b -> HBox.setMargin(b, INSETS));

// Bottom
this.btnOk = new Button("ok");
this.btnCancel = new Button("abbrechen");
this.bottom = new HBox(btnOk, btnCancel);
bottom.getChildren()
.forEach(b -> HBox.setMargin(b, INSETS));

// Pane
this.pane = new BorderPane(center);
pane.setBottom(bottom);
pane.setPrefSize(WIDTH, HEIGHT);
getDialogPane().setPrefSize(WIDTH, HEIGHT);
getDialogPane().getChildren().add(pane);
...
}

private void createLeftBox() {
// Points spinner
List<Integer> points = Stream.iterate(0, Util::increment)
.limit(MAX_POINTS)
.collect(Collectors.toList());
this.spPoints = new Spinner<>(observableArrayList(points));

// Solo combobox
List<Solotype> soli = Arrays.asList(Solotype.values());
this.cbSolo = new ComboBox<>(observableArrayList(soli));
cbSolo.setOnAction(e -> changed());

// Bock checkbox
this.chBock = new CheckBox("Bock");

// Left box
leftBox = new VBox(spPoints, cbSolo, chBock);
leftBox.getChildren()
.forEach(n -> VBox.setMargin(n, INSETS));

leftBox.setStyle("-fx-border-color: #ff0000");
}

private void createRightBox(Player[] players) {
List<Player> playerlist = Arrays.asList(players);
// Right box
rightBox = new VBox();
List<Node> rightChildren = rightBox.getChildren();
this.playerBoxes = playerlist.stream()
.collect(toMap(p -> p,
p -> new HBox(4)));
this.players = playerlist.stream()
.collect(toMap(p -> p,
this::createToggleGroup));
playerBoxes.values()
.stream()
.peek(rightChildren::add)
.forEach(b -> VBox.setMargin(b, INSETS));

rightBox.setStyle("-fx-border-color: #ff0000");
}

我的类(class)GameDialog扩展了 javafx 类 Dialog<R> 。然而HBoxBorderPane 的中心没有填满所有可用空间。它看起来就像这样:

Screenshot of the Dialog

我尝试在几个水平框和垂直框上设置 MinWidth、setMinHeight、setPrefSize、setFillWidth(true) 和 setFillHeight(true)。没有改变。我只是不明白这种行为。有什么想法吗?

最佳答案

我无法完全重新创建您的示例(由于缺少一些代码,我使用 TextField 而不是那些切换组),但此解决方案取得了一些成功。

而不是使用:

getDialogPane().getChildren().add(pane);

用途:

getDialogPane().setContent(pane);

控件应该使用所有可用空间。

<小时/>

enter image description here

(我还删除了首选宽度和高度的设置,因此图像稍小一些。设置 Pane 的首选大小不会以任何方式改变任何内容。)

关于java - HBox 未填充边框中心的可用空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38161137/

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