Latest News

 










The JTabbedPane Component

Previous slide Next slide Back to first slide View graphic version


The JTabbedPane Component


 
My other sites

Latest News

 










The JTabbedPane Component

    private void init() {
    JTabbedPane jtb = new JTabbedPane();
    for (int i=1;i᝺i++) {
    ImageIcon icon = new ImageIcon(i+".gif");
    ImageIcon icon2 = new ImageIcon(i+"a.jpg");
    JScrollPane jsp = new JScrollPane(new JLabel(icon2));
    jtb.addTab(i+"-tab",icon,jsp);
    }
    getContentPane().add(jtb);
    jtb.setBorder(BorderFactory.createEtchedBorder());
    }

Previous slide Next slide Back to first slide View graphic version