Is there any way to change size of tab in JTabbedPane
? I mean not all panel but only the small tab that user has to click to see what is under it.
Asked
Active
Viewed 2.3k times
6

Andrew Thompson
- 168,117
- 40
- 217
- 433

Bulit
- 975
- 6
- 15
- 26
3 Answers
8
this is worked for me.
JLabel lab = new JLabel();
lab.setPreferredSize(new Dimension(200, 30));
jTabbedPane1.setTabComponentAt(0, lab); // tab index, jLabel
or try this change to all tab component in same sizes (called in main method)
UIManager.getLookAndFeelDefaults().put("TabbedPane:TabbedPaneTab.contentMargins", new Insets(10, 100, 0, 0));

Youcef LAIDANI
- 55,661
- 15
- 90
- 140

Harsha Basnayake
- 4,565
- 3
- 17
- 23
6
You can either create your own TabbedPaneUI
, but it might be simpler if you just use the JTabbedPane#setTabComponentAt
and use a larger component for rendering the tab title

Robin
- 36,233
- 5
- 47
- 99
3
In order to create custom tabbedPane, I recommand to check the Oracle tutorial. You have to create your own panel, then you can modify the Component that render the title. Finally you usesetTabComponentAt
to put your own panel in the pane.

alain.janinm
- 19,951
- 10
- 65
- 112