Java列表设置列表项的背景
如何更改 Java AWT 列表项的背景颜色?我指的是 AWT 列表中的单个项目,而不是整个项目。
How does one change the background color of a Java AWT List item? By that I mean a single item in a AWT List, not the whole thing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您将需要一个自定义渲染器。也就是说,如果您使用 Swing。最好坚持使用 Swing 组件,而不是 awt gui 组件。
You'll need a custom renderer. That is, if you're using Swing. It's better to stick with the Swing components and not the awt gui components.
由于Java AWT List继承自Component,因此使用Component的setBackground(Color c)方法。
列表现在的颜色为绿色。
Since Java AWT List inherits from Component, use Component's setBackground(Color c) method.
List now has a color green.
自从我使用 AWT 以来已经有一段时间了,但是你不能只使用 setBackground(Color) 吗? List 是 java.awt.Component 的子类。
Been a while since I have worked with AWT, but can't you just use setBackground(Color)? List is a subclass of java.awt.Component.