JTabbedPane 制表符对齐
我好像找不到这个
我使用什么方法(和常量)来对齐 JTabbedPane 中的选项卡。 我找到了如何在顶部和底部之间切换。但我试图将它们放在底部的中心。 所以它看起来像这样
ooooooooooooooooo
o......................o
o...... ………………………………………………
…………………………………………
o
oooooooooooooooooo
...... |选项卡 1 || 选项卡 2 |
谢谢
I can't seem to find this.
What method (and constant) do I use to align the tabs in a JTabbedPane
.
I Found how to switch between Top and Bottom. But I'm trying to put them in the center at the bottom.
So that it looks like this
ooooooooooooooooooo
o..................................o
o..................................o
o..................................o
o..................................o
ooooooooooooooooooo
...... |Tab1||Tab2|
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。此布局规则由所选外观强制执行。
You can't. This layout rule is enforced by the selected look and feel.
您可以为 JTabbedPane 组件编写自己的 UI-Delegate ,该组件扩展
BasicTabbedPane
类并覆盖方法“
getTabInsets(int, int)
”。更改“tabInsets
”属性的值(默认值为:new Insets(0,4,1,4),居中)。You can write your own UI-Delegate for JTabbedPane component that extends
BasicTabbedPane
class and overwrite themethod '
getTabInsets(int, int)
'. Change value of 'tabInsets
' atribute ( default value is: new Insets(0,4,1,4), centered).