JTable 在 Java 中为特定网格线着色
我有这个 8x8 的表格,我想将表格最顶部的第一个和第二个单元格的网格着色为红色。我的问题是可以这样做吗?
I have this 8x8 table and and I want to color the grid of the first and the second cell at the very top of the table with red. My question is it possible to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:我删除了这个,因为我认为这不是OP想要的。我根据OP的要求取消删除它。
是的当然。
一种方法是扩展现有渲染器并重写 getTableCellRendererComponent 方法。
例如:
然后您需要警告您的 JTable 您想要将此渲染器用于某些类型的数据。
例如,如果您想将其用于包含整数的单元格,则以下内容应该有效:
EDIT: I deleted this because I thought this wasn't what OP wanted. I'm undeleting it at OP's request.
Yes of course.
One way to do it would be to extend an existing renderer and override the getTableCellRendererComponent method.
For example:
You then need to warn your JTable that you want to use this renderer for certain types of data.
For example if you want to use this for cells containing Integer, the following should work:
由于您只想根据位置而不是类型影响某些单元格,因此请覆盖
prepareRenderer()
并返回一个组件,该组件具有所需单元格的红色Border
。另请参阅如何使用表 。Because you want to affect only certain cells based on location rather than type, override
prepareRenderer()
and return a component having a redBorder
for the desired cells. See also How to Use Tables.