JTable没有水平线和垂直线

发布于 2024-09-10 10:14:27 字数 33 浏览 5 评论 0原文

如何创建一个没有垂直线和水平线的 JTable...

How to create a JTable without vertical and horizontal lines in it...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

只涨不跌 2024-09-17 10:14:27

尝试使用 setShowGrid()setShowVerticalLines()setShowHorizo​​ntalLines()

setShowVerticalLines()

设置表格是否垂直绘制
细胞之间的线。如果
showVerticalLines 确实如此;如果
这是假的,事实并非如此。

示例:

table.setShowGrid(false);
table.setShowVerticalLines(false);

table.setShowGrid(false);
table.setShowHorizontalLines(false);

Try playing around with setShowGrid(), setShowVerticalLines() and setShowHorizontalLines()

setShowVerticalLines()

Sets whether the table draws vertical
lines between cells. If
showVerticalLines is true it does; if
it is false it doesn't.

Examples:

table.setShowGrid(false);
table.setShowVerticalLines(false);

table.setShowGrid(false);
table.setShowHorizontalLines(false);
甜嗑 2024-09-17 10:14:27
jTable4.setShowHorizontalLines(true); // only HorizontalLines
  jTable4.setShowVerticalLines(true); //  only VerticalLines
  jTable4.setShowGrid(true);          // show Horizontal and Vertical
  jTable4.setGridColor(Color.yellow); // change line color 

使用此代码:)

jTable4.setShowHorizontalLines(true); // only HorizontalLines
  jTable4.setShowVerticalLines(true); //  only VerticalLines
  jTable4.setShowGrid(true);          // show Horizontal and Vertical
  jTable4.setGridColor(Color.yellow); // change line color 

use this code :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文