Adding icon on JTabbedpane tab

11,031

Solution 1

Use the setIconAt method of the JTabbedPane:

http://docs.oracle.com/javase/7/docs/api/javax/swing/JTabbedPane.html#setIconAt(int, javax.swing.Icon)

Solution 2

Please read the java tutorials first, they are really informative: http://docs.oracle.com/javase/tutorial/uiswing/components/tabbedpane.html

Share:
11,031
hemant
Author by

hemant

Software Developer

Updated on June 23, 2022

Comments

  • hemant
    hemant almost 2 years

    I am having a JTabbedPane on my Form. The problem is I want to display icons to the Tabs of my TabbedPane.

    How can i do that?