Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 JPanel 中显示了一个 JTable。JTable 在滚动窗格中。唯一的问题是网格线没有出现。我尝试使用这行代码,但没有用。
table.setShowGrid(true);
下图:注意没有网格线
先感谢您。
蚀刻边框会有所不同吗?
table.setBorder(new EtchedBorder(EtchedBorder.RAISED));
编辑:
网格线的默认颜色似乎是白色:
table.setGridColor(Color.BLUE)
table.setShowHorizontalLines(true); table.setShowVerticalLines(true);