我正在使用javafx并尝试在窗口顶部获取搜索按钮。我正在使用HBox添加区域和按钮,但是区域太宽。我可以通过对按钮的最小大小进行硬编码来解决此问题,但是我想知道是否有更有效的方法可以帮助我学习javafx。
TextArea searchArea = new TextArea("Search");
TextArea resultsArea = new TextArea("Results");
Button searchButton = new Button("Search");
HBox topBox = new HBox(searchArea, searchButton);
searchButton.setMaxHeight(Double.MAX_VALUE);
searchArea.setMinHeight(10);
topBox.setMaxHeight(10);
慕桂英546537
相关分类