pestañas ejemplo con java swing background-color jtabbedpane

java - ejemplo - Cómo cambiar el color de fondo de JTabbedPane?



jtabbedpane java netbeans (2)

Sé que puedes modificar las propiedades de LaF , pero ¿cómo logras esto sin hacerlo? Solo pregunto porque setBackground no parece hacerlo.

Tenga en cuenta que estoy buscando cambiar las siguientes propiedades:

  1. TabbedPane.background (o TabbedPane.contentAreaColor ?)
  2. TabbedPane.tabAreaBackground

Usando TabComponentsDemo como ejemplo, setBackgroundAt() parece funcionar:

private void initTabComponent(int i) { pane.setTabComponentAt(i, new ButtonTabComponent(pane)); pane.setBackgroundAt(i, Color.getHSBColor((float)i/tabNumber, 1, 1)); }

Adición: Como se ha observado útilmente a @camickr, el componente objetivo debe ser opaco .

import java.awt.Color; import java.awt.Dimension; import java.awt.EventQueue; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JTabbedPane; /** @see http://.com/questions/8752037 */ public class TabColors extends JPanel { private static final int MAX = 5; private final JTabbedPane pane = new JTabbedPane(); public TabColors() { for (int i = 0; i < MAX; i++) { Color color = Color.getHSBColor((float) i / MAX, 1, 1); pane.add("Tab " + String.valueOf(i), new TabContent(i, color)); pane.setBackgroundAt(i, color); } this.add(pane); } private static class TabContent extends JPanel { private TabContent(int i, Color color) { setOpaque(true); setBackground(color); add(new JLabel("Tab content " + String.valueOf(i))); } @Override public Dimension getPreferredSize() { return new Dimension(320, 240); } } private void display() { JFrame f = new JFrame("TabColors"); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.add(this); f.pack(); f.setLocationRelativeTo(null); f.setVisible(true); } public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { @Override public void run() { new TabColors().display(); } }); } }


También puede hacer lo siguiente:

for (int i = 0; i < this.getTabCount(); i++) { this.getComponentAt(i).setBackground(Color.DARK_GRAY); }

o

for (int i = 0; i < this.getTabCount(); i++) { this.setBackgroundAt(i, Color.DARK_GRAY); this.getComponentAt(i).setBackground(Color.DARK_GRAY); }

para fondos de pestañas y paneles