Colorize a tab in a JTabbedPane using java swing

后端 未结 4 1081
孤街浪徒
孤街浪徒 2021-01-15 03:24

I am trying to change the background color of my tabs in a JTabbedPane. I tried JTabbedPane.setBackgroudAt(0, Color.GRAY) and JTabbedPane.set

4条回答
  •  鱼传尺愫
    2021-01-15 04:01

    It may be a problem that there is nothing added yet to the tab.

    Try setting the content manager of the content panel to BorderLayout, adding a JPanel with BorderLayout. Center and then coloring that panel.

提交回复
热议问题