如何在 swing 构建器中自定义 tabbedPane 的颜色?

发布于 2024-10-15 13:33:40 字数 168 浏览 1 评论 0原文

我想自定义 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...
enter image description here

thnx in advance ^_^

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

哽咽笑 2024-10-22 13:33:40

在创建 GUI 之前,您可以进行一些 UIManager 设置,但它们适用于每个 JTabbedPane:
这将更改所选选项卡的颜色。

UIManager.put("TabbedPane.selected", Color.RED);

我没有看到边框的设置,但您可以像这样隐藏它:

UIManager.put("TabbedPane.contentBorderInsets", new Insets(0, 0, 0, 0));

最后,您可以像这样更改选项卡窗格的背景:

tab.setBackground(Color.BLUE);

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.

UIManager.put("TabbedPane.selected", Color.RED);

I don't see a setting for the border but you can hide it like so:

UIManager.put("TabbedPane.contentBorderInsets", new Insets(0, 0, 0, 0));

Lastly you can change the background of the tab pane like this:

tab.setBackground(Color.BLUE);
淡淡の花香 2024-10-22 13:33:40

对于 JTabbedPane 的外观和感觉,请按照本文中所述设置 UIManager 设置 在Java选项卡式窗格中控制颜色

相关代码:

  UIManager.put("TabbedPane.contentAreaColor ",ColorUIResource.GREEN);
  UIManager.put("TabbedPane.selected",ColorUIResource.GREEN);
  UIManager.put("TabbedPane.background",ColorUIResource.GREEN);
  UIManager.put("TabbedPane.shadow",ColorUIResource.GREEN);

  // now construct the tabbed pane
  tab=new JTabbedPane();

For the JTabbedPane look and feel, set the UIManager settings as described in this post Controlling Color in Java Tabbed Pane

Relevant code:

  UIManager.put("TabbedPane.contentAreaColor ",ColorUIResource.GREEN);
  UIManager.put("TabbedPane.selected",ColorUIResource.GREEN);
  UIManager.put("TabbedPane.background",ColorUIResource.GREEN);
  UIManager.put("TabbedPane.shadow",ColorUIResource.GREEN);

  // now construct the tabbed pane
  tab=new JTabbedPane();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文