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,401
  • 14
  • 78
  • 121
hemant
  • 544
  • 2
  • 13
  • 36
  • 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
  • 46,469
  • 4
  • 81
  • 115
3

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

moeTi
  • 3,814
  • 23
  • 35