or123456
or123456

Reputation: 2199

How to Not Display Tab Title in JtabbedPane?

How to not display tab title in Jtabbedpane?
how to manage multiple overhand jpanel?

Upvotes: 0

Views: 388

Answers (1)

dogbane
dogbane

Reputation: 274612

Use null for the title text when you insert the tab. For example:

JTabbedPane tabbedPane = new JTabbedPane();
tabbedPane.addTab(null, new JPanel());

Alternatively, call setTitleAt to set the title of a specific tab to null:

tabbedPane.setTitleAt(1, null);

Upvotes: 2

Related Questions