6

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?

MaVRoSCy
  • 17,747
  • 15
  • 82
  • 125
hemant
  • 564
  • 2
  • 13
  • 37
  • 2
    Here is [an example](http://stackoverflow.com/questions/10055336/jtabbedpane-show-task-progress-in-a-tab/10055387#10055387) of a rotating icon on a `JTabbedPane` – Robin Jul 06 '12 at 11:13

2 Answers2

6

Use the setIconAt method of the JTabbedPane:

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

Guillaume Polet
  • 47,259
  • 4
  • 83
  • 117
3

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

moeTi
  • 3,884
  • 24
  • 37