| Author |
How do I create a JTabbedPane with editable tab labels
|
Faiz Chachiya
Greenhorn
Joined: Nov 06, 2006
Posts: 6
|
|
|
How do I create a JTabbedPane with editable tab labels
|
 |
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8574
|
|
Originally posted by Faiz Memon: How do I create a JTabbedPane with editable tab labels
Since 1.6 there is a method JTabbedPane#setTabComponentAt(int index,Component component) You can use this to provide your custom component which will enable the user to edit the tab label. If you cannot use 1.6, you might consider using a trigger (JPopupMenu on right clicking the tab perhaps), ask the user for the new text (Using the JOptionPane#showInputDialog() perhaps) and set the new title by using the JTabbedPane#setTitleAt(int index,String title)
|
[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
|
 |
 |
|
|
subject: How do I create a JTabbedPane with editable tab labels
|
|
|