11

我有一个GridPane充满 1 个字母的标签。

这是一张图片:

图片

这是代码:

int charSpacing = 1;
int charsInWidth = 28;
int charsInHeight = 16;

double charWidth = 15;
double charHeight = 20;

GridPane gp = new GridPane();
gp.setAlignment(Pos.CENTER);

Label[] tmp = new Label[charsInHeight*charsInWidth];

String text = "W";
int currArrPos = 0;

for(int y = 0; y < charsInHeight; y++) {
    HBox hbox = new HBox(charSpacing);

    for(int x = 0; x < charsInWidth; x++) {
        tmp[currArrPos] = new Label(text);
        tmp[currArrPos].setTextFill(Paint.valueOf("white"));

        tmp[currArrPos].setMinHeight(charHeight);
        tmp[currArrPos].setMinWidth(charWidth);
        tmp[currArrPos].setMaxHeight(charHeight);
        tmp[currArrPos].setMaxWidth(charWidth);

        tmp[currArrPos].setStyle("-fx-border-color: white;");
        hbox.getChildren().add(tmp[currArrPos++]);

        if(x%2 == 0){
            text = "I";
        } else{
            text = "W";
        }
    }
    gp.add(hbox, 1, y);
}
guiDisplay.getChildren().add(gp);

我怎样才能使角色居中?

我把它们放在了一个中HBox,并给了它们间距。我试图将textAlignment标签设置为CENTER,但这当然行不通。

我也试过这个:

gp.setAlignment(Pos.CENTER);

有人有想法吗?谢谢!

4

3 回答 3

28
于 2013-06-19T09:23:54.363 回答
12

哦,那很容易。我在错误的地方做了对齐。添加这将完成这项工作:

tmp[currArrPos].setAlignment(Pos.CENTER);

不管怎么说,还是要谢谢你。

于 2012-10-10T09:41:19.920 回答
6

您可以使用setAligment(Pos.CENTER)元素的属性-

或者你可以定义一个包含元素contraintGridPane

<columnConstraints>
    <ColumnConstraints halignment="CENTER" />
</columnConstraints>

例子:

<?import javafx.geometry.Insets?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.ColumnConstraints?>

<GridPane fx:controller="app.graphics.Controller"
          xmlns:fx="http://javafx.com/fxml" alignment="center" hgap="10" vgap="10">
    <columnConstraints>
        <ColumnConstraints halignment="CENTER" />
    </columnConstraints>
</GridPane>
于 2018-09-13T22:18:31.617 回答