Creating a JTabbedPane Container
int location = JTabbedPane.TOP; // or BOTTOM, LEFT, RIGHT
JTabbedPane pane = new JTabbedPane(location);
ImageIcon icon = new ImageIcon("image.gif"); // or null;
pane.addTab("Tab Label", icon, panel, "Tool Tip Text");
Post a comment