About JEditorPane?
hi, i just want to ask if i can put image/icon to a JEditorPane? what method or is there a constructor to this? Thank you..
You can add a JLabel which can have an image icon on it. To do this you would do something like
label = new JLabel( new ImageIcon("Path/to/Icon" );
label.setLocation(200, 200);
label.setSize( label.getPreferredSize() );
JEditorPane.add(label);
will you be able to add a action event listener to it, so i can use it as a button?i tried to make a class the extends JButton to have a image on it, but it became just standard button size.