我在自定义我的选择框时遇到问题,我有一个项目列表,我以这种方式添加到我的ChoiceBox:
ArrayList<String> myArrayOfItems = new ArrayList<>;
myArrayOfItems.add(...);
choiceBox.setItems(FXCollections.observableArrayList(myArrayOfItems);
我希望其中一些项目以粗体显示,例如:
我知道我可以使用类似CSS的类来自定义我的选择框但是我想自定义列表中的一些项目并不是全部(在下面的例子中它是第2项和第4项)。
每个人都知道是否可以使用ChoiceBox来做到这一点?
提前TY! 迪伦