Reputation: 2199
How to not display tab title in Jtabbedpane?
how to manage multiple overhand jpanel?
Upvotes: 0
Views: 388
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