JavaFx GridPane - how to center elements

喜你入骨 提交于 2019-11-30 02:23:08

问题


I have a GridPane filled with 1-letter-labels.

Here is an image:

Here is the code:

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);

How can I center the characters?

I have put them in a HBox and gave them spacing. I tried to make the textAlignment of the label to CENTER, but that doesn't work of course.

I tried this also:

gp.setAlignment(Pos.CENTER);

Has anybody an idea? Thanks!


回答1:


  • You can use this GridPane.setHalignment(tmp[currArrPos], HPos.CENTER); Using GridPane to layout controls



回答2:


oh, that was easy. i did the alignment on the wrong place. adding this will do the job:

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

thanks anyway.




回答3:


You can use the setAligment(Pos.CENTER) property of your element-

or you can define a contraint to the GridPane that contains the elements

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

Example:

<?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>


来源:https://stackoverflow.com/questions/12816075/javafx-gridpane-how-to-center-elements

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!