JTable - 线条的颜色选择
我有一个 JTable,位于 JPanel 的第一列中。问题是,当我选择一行时,除了包含 JPanel 的单元格之外,该行的所有单元格都会更改背景颜色。
所以我希望包含 JPanel 的单元格也将更改背景颜色。
I have a JTable where I have in the first column of a JPanel. The problem is that when I select a line, all cells of the line changing the background color except the cell that contains the JPanel.
So I want the cell that contains the JPanel will also change the background color.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该实现自定义单元格渲染器。请参阅教程。
You should implement a custom cell renderer. See the tutorial.