7

我在我的 JPanel 中显示了一个 JTable。JTable 在滚动窗格中。唯一的问题是网格线没有出现。我尝试使用这行代码,但没有用。

table.setShowGrid(true);

下图:注意没有网格线在此处输入图像描述

先感谢您。

4

2 回答 2

11

蚀刻边框会有所不同吗?

table.setBorder(new EtchedBorder(EtchedBorder.RAISED));

编辑:

网格线的默认颜色似乎是白色:

table.setGridColor(Color.BLUE)
于 2013-01-13T04:20:34.037 回答
10
table.setShowHorizontalLines(true);
table.setShowVerticalLines(true);
于 2013-09-18T07:50:18.030 回答