Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在有两列的 JavaFx 中使用 GridLayout。现在我想要第二列中的文本字段来填充面板的最大可用空间。
如果我调整窗口大小,我尝试的一切都会给我一个不变的文本字段大小。
我怎样才能做到这一点?
有两种方法可以解决这个问题:
1.)您可以设置列百分比宽度:
ColumnConstraints col2 = new ColumnConstraints(); col2.setPercentWidth(80);
2.)或者您使用两个 VBox 并将每个 VBox 用作一列。