gpt4 book ai didi

java - 如何使用带有 Class 值的 JComboBox

转载 作者:行者123 更新时间:2023-12-02 05:22:51 26 4
gpt4 key购买 nike

我做了这个:

private JComboBox vehicleType = new JComboBox();
DefaultComboBoxModel<Class> dcbm = new DefaultComboBoxModel<Class>(
new Class[] {Truck.class, Trailer.class, RoadTractor.class, SemiTrailer.class, Van.class, Car.class})
{
@Override
public String getSelectedItem() {
return ((Class<?>)super.getSelectedItem()).getSimpleName();
}

};

我已经得到了这个:

enter image description here

您可以看到,所选项目显示了他的简单类名称,但在列表中...没有。我怎样才能做到这一点?

最佳答案

JComboBox 使用 toString() 方法获取标签,您可以通过实现 ListCellRenderer 来覆盖该行为。

vehicleType.setRenderer(new DefaultListCellRenderer() {
@Override
public Component getListCellRendererComponent(JList<?> list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
if(value != null) {
setText(((Class)value).getSimpleName());
}
return this;
}
});

此外,如果您使用此方法,您应该删除模型中 getSelectedItem() 的覆盖,因为它会干扰渲染器。

关于java - 如何使用带有 Class 值的 JComboBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26356647/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com