如何在 swing 构建器中自定义 tabbedPane 的颜色?
我想自定义 tabbedPane 的颜色以适合我的 gui 主题,但我不知道该怎么做。我已经尝试了很多代码,但仍然没有任何反应。
这是我的指南...
提前谢谢 ^_^
I want to customize the color of my tabbedPane to fit at the theme of my gui, but I don't know how to do it. I've tried lots of code but still nothing happens.
Here's my gui...
thnx in advance ^_^
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在创建 GUI 之前,您可以进行一些 UIManager 设置,但它们适用于每个 JTabbedPane:
这将更改所选选项卡的颜色。
我没有看到边框的设置,但您可以像这样隐藏它:
最后,您可以像这样更改选项卡窗格的背景:
There are couple UIManager setting you can make before you create the GUI but they will be for every JTabbedPane:
This will change the selected tab color.
I don't see a setting for the border but you can hide it like so:
Lastly you can change the background of the tab pane like this:
对于 JTabbedPane 的外观和感觉,请按照本文中所述设置
UIManager
设置 在Java选项卡式窗格中控制颜色相关代码:
For the JTabbedPane look and feel, set the
UIManager
settings as described in this post Controlling Color in Java Tabbed PaneRelevant code: