我正在使用ChoiceBox
,其中有几个可用的下拉项。显示的下拉大小取决于项目大小。但我希望下拉列表具有固定的大小,而不管下拉列表中的项目大小。关于如何在“场景构建器”中实现的任何想法?
答案 0 :(得分:0)
您可以添加CSS样式表来设置用于显示项目的ListView
大小的限制。
CSS样式表
.combo-box .combo-box-popup .list-view { /* perhaps use a different/additional class for the combobox to be styled this way??? */
-fx-min-height: 400;
-fx-max-height: 400;
}