如何增加JTable Swing中标题栏的字体?
我想知道如何增加 JTable Swing 中标题列的字体大小?
我正在使用 Netbeans。
此致。
丹尼尔
I would like to know how to increase the Font size of the title column in JTable Swing?
I'm usning Netbeans.
Best regards.
Daniel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您只需调用
getTableHeader()
方法即可。然后在JTableHeader
类的对象上使用setFont(/*font*/)
方法设置新字体。You just need to call the
getTableHeader()
method. Then on the object of classJTableHeader
use thesetFont(/*font*/)
method to set new font.要保持相同的字体系列并仅更改大小,您可以使用:
To keep the same Font family and just change the size you can use:
不确定你的问题,然后我发布两个选项
1) set Font for JTable
myTable.setFont(new Font("Arial", Font.PLAIN, 10))
2) set Font for TableHeader
not sure from your question, then I post both options
1) set Font for JTable
myTable.setFont(new Font("Arial", Font.PLAIN, 10))
2) set Font for TableHeader