Swing (javax.swing)Creating a ButtonJButton textbutton = new JButton("Label"); JButton imagebutton = new JButton( new ImageIcon(iconpath + "ok.gif")); JButton doublebutton = new JButton("Label", new ImageIcon(iconpath + "ok.gif")); abutton.addActionListener(actionListener); |