调整 JTable-grid 的大小和颜色并使单元格可调整大小
如何调整JTable中网格的大小和颜色以及如何设置JTable使得列或行的长度可以通过拖动来增加和减少?
How to adjust the size and colour of grid in JTable and how to set JTable so that length of column or row can be increased and decreased by dragging it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
setGridColor
设置网格的颜色。要让用户调整列宽,请使用
getTableHeader()
。setResizingAllowed(true)
。没有对调整行大小的开箱即用的支持,这个帖子可能会有所帮助。
更多信息:
You can use
setGridColor
to set the color of the grid.To let the user adjust column width, use
getTableHeader()
.setResizingAllowed(true)
.There is no out-of-the-box support for resizing rows, this post could help.
Some more information: