Bulit
Bulit

Reputation: 995

Set size of tab in JTabbedPane

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.

Upvotes: 5

Views: 23788

Answers (3)

Harsha Basnayake
Harsha Basnayake

Reputation: 4855

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));

Upvotes: 8

alain.janinm
alain.janinm

Reputation: 20065

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.

Upvotes: 3

Robin
Robin

Reputation: 36611

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

Upvotes: 5

Related Questions