如何设置JTabbedPane选项卡高度宽度背景前景色(选定和未选定的选项卡)
如何设置 JTabbedPane
选项卡背景和前景、高度和宽度(选定和未选定的选项卡)
How to set the JTabbedPane
Tab background and Foreground, Height and Width (Both selected and Unselected Tab)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以为 UIDefaults 设置新值:
这里是 Nimbus LookAndFeel 的键列表,
还有一些其他 Nimbus 默认值例如:
You can set new values to the UIDefaults:
here are a list of Keys
For Nimbus LookAndFeel there are some other Nimbus Defaults like:
更改选项卡高度和宽度的一种方法是在选项卡标签中使用 HTML 和/或 CSS。为此,您可以在 HTML“span”或“p”元素中使用 CSS padding 属性。
One way to change height and width of tabs is to use HTML and/or CSS in label of tab. You can use CSS padding attribute in HTML 'span' or 'p' element for this purpose.
您可以按如下方式控制高度:
如果每个选项卡需要不同的高度,这个答案也可能有用:如何处理 JTabbedPane 中选项卡标题的高度
You can control the height as follows:
If each tab needs to be a different height, this answer might also be useful: How to handle the height of the tab title in JTabbedPane