Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为组合框中的每个项目显示多行文本。如果超过组合框的宽度,单词应该自动转到下一行。如何做到这一点?
String meanings;// array which contains pretty long sentences JComboBox<String> meaningsComboBox=new JComboBox<String>(meanings);
也许将每个值包装到 html 中会对您有所帮助(此技巧适用于 JLabels),例如此处。以另一种方式,我认为,您需要制作自定义渲染器,例如here