当我第一次单击ComboBox时,显示的弹出菜单列表的宽度非常短.第二次单击ComboBox并再次显示该列表时,该宽度现在正确,因为该列表的宽度现在与Combbox对齐.
我试图更改下拉框在组合框上单击鼠标的宽度.但这没有用
final ComboBox<String> combo = new ComboBox<String>();
combo.getStyleClass().add("combo-border");
combo.setMinWidth(100.0);
combo.setEditable(true);
combo.setOnMouseClicked(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent arg0) {
combo.setMinWidth(100.0); // Did not work
//csectCombo.setPrefWidth(100.0); // Did not work
}
});
我正在使用Javafx 2.2.有什么解决方法吗?
在下面的文章中,它说这是JavaFx 2中的已知错误,并已在JavaFx 8中修复.
http://tech.chitgoks.com/2013/09/20/width-of-combobox-popup-list-is-too-small-in-java-fx-2/
解决方法:
尝试这个
final ComboBox<String> combo = new ComboBox<String>();
combo.getStyleClass().add("combo-border");
combo.setMinWidth(100.0);
combo.setEditable(true);
combo.setPrefWidth(combo.getMinWidth());