我们可以部分绘制 JTable 单元格吗?
是否可以单独绘制 JTable 单元格的一部分?比如 40% 是绿色,剩余是红色?
Is it possible to paint a JTable cell alone partially?Like 40% of it is green remaining is red?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据您的说法,我知道您想要在 JTable 单元格中进行进度条绘制之类的操作。如果是这样,您可能会对 那些旧的 Swing 示例。
From what you say, I understand you want to do progress-bar like painting in a JTable cell. if so, you could be interested by those old Swing examples.
在 Jtable 中,您可以在
http 中更多地实现自己的 cellrenderer ://java.sun.com/docs/books/tutorial/uiswing/components/table.html
在渲染器中你可以随意绘制
In a Jtable you can implement your own cellrenderer more on Jtables in
http://java.sun.com/docs/books/tutorial/uiswing/components/table.html
in the renderer you can paint anyway you want