我一直在寻找这个。
如何在JavaFX中检索Button / Label / TextField的宽度/高度?
我想手动设置按钮的大小以适合同一布局中其他一些对象的大小。
我尝试过但无法正常工作的东西。
//Creating some controls for us to be on the same page:
Button b1 = new Button("I'm b1");
Button b2 = new Button("My name is Methos");
Label label = new Label("testing is fun");
这就是我尝试过的。
b1.setMinWidth(b2.getWidth() + label.getWidth()); //Output is 0.0
b1.setMinWidth(b2.getLayoutBounds().getWidth() + label.getLayoutBounds().getWidth()) //Output is also 0.0
有人知道吗?