如何更改 JList 中文本的颜色和样式?
我有一个包含名称列表的 DefaultListModel。当名称添加到列表中时,它们只是作为字符串添加。我需要做的是在某些时间更改某些名称的颜色/样式(即斜体)。有什么有效的方法可以做到这一点吗?
I have a DefaultListModel that contains a list of names. When the names are added to the list, they are just added as Strings. What I need to do is change the color / style (ie, italicize) of some of the names at certain times. Is there any efficient way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用自定义渲染器。请参阅编写自定义渲染器。
You need to use a custom renderer. See Writing a Custom Renderer.