Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JavaFX how to get menubar to fit to parent in width only?

I am using Scene Builder to create my GUI and my menu bar isn't resizing to the parent. How do i get it to do this?

When I try Modify -> Fit to Parent, the menu bar takes up the whole root pane, and obviously this isn't what i want. Here is an image of what i am talking about:

enter image description here

As you can see, the menu bar doesn't fully extend to the end of the window.

like image 258
j will Avatar asked Nov 27 '22 11:11

j will


1 Answers

You need to bind the preferred width property of your menu bar to the width of your stage or some other container node. It works when you dynamically resize too.

menuBar.prefWidthProperty().bind(primaryStage.widthProperty());
like image 104
Juan Carlos Sanchez Avatar answered Dec 05 '22 17:12

Juan Carlos Sanchez