loUIS CK
loUIS CK

Reputation: 159

How to set a fixed width to Gridpane in Javafx?

I have got this gridPane in my code and i want to give it a fixed width of 800,i tried setting style like this

    grid.setStyle("width: 400px;");

But it didn't work.

Upvotes: 4

Views: 10241

Answers (1)

Developer66
Developer66

Reputation: 750

In this case CSS is not the best solution.

Try: gridPane.setPrefWidth(800);

If this doesn't work you can try:

gridPane.setMinWidth(800);
gridPane.setMaxWidth(800);

So your GridPane is definitely 800px width

Upvotes: 2

Related Questions