我需要设置所选项目的overrun style。据我所知,要设置溢出样式,我需要访问buttonCell(类型为ObjectProperty[javafx.scene.control.ListCell[T]])。

因此我写了

val fileComboBox = new ComboBox[java.io.File](Seq())
println(fileComboBox.buttonCell)


为了查看buttonCell成员具有哪个值。

结果:[SFX]ObjectProperty [bean: ComboBox@319f91f9[styleClass=combo-box-base combo-box], name: buttonCell, value: null],这意味着不存在我可以设置的按钮样式(value: null)。

如何更改组合框的溢出样式?

最佳答案

您可以使用外部CSS文件执行此操作:

.combo-box > .list-cell {
  -fx-text-overrun: leading-ellipsis ;
}


有效值为[ center-ellipsis | center-word-ellipsis | clip | ellipsis | leading-ellipsis | leading-word-ellipsis | word-ellipsis ],默认值为ellipsis

您也可以通过直接设置按钮单元格来执行此操作。在JavaFX中(我留给您将其翻译成Scala):

ListCell<File> buttonCell = new ListCell<File>() {
    @Override
    protected void updateItem(File item, boolean empty) {
        super.updateItem(item, empty);
        setText(empty ? null : item.getName());
    }
};
buttonCell.setTextOverrun(OverrunStyle.LEADING_ELLIPSIS);
fileComboBox.setButtonCell(buttonCell);

09-25 22:19