如何在 Nimbus 外观和感觉中居中 JTable 标题的内容
我怎样才能将具有灵气外观和感觉的 JTable 标题的内容居中?我尝试使用 DefaultTableCellHeaderRenderer,但它看起来像这样;
有没有办法让它们看起来都像 PARENT_ID 列并居中?
How can i center the content of JTable Header which has a nimbus look and feel? I tried to use DefaultTableCellHeaderRenderer, but it look like this;
is there any way to make them all look like PARENT_ID column's and centered?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此示例展示了一种方法。通过使用表头的
DefaultTableCellRenderer
,可以最大限度地减少对 UI 委托外观的影响。This example shows one approach. By using the table header's
DefaultTableCellRenderer
, it minimizes the impact on the UI delegate's appearance.