- ven. 12 avr. 2013 16:49
#44612
Bonjour à toutes et à tous,
je suis face à un mur de programmation Java, j'aimerais ajouter à une JFrame un Jlabel suite à à une réponse de clic, mais mon getContentPane ne peut recevoir un objet static.
Dons un petit coup de pouce me serais d'un grand secours !
Merci d'avance.
if (testLocation( p, ZONE_IMAGE_10, "mouseClicked - data 10")){
try {
JLabel imageLabel = new JLabel();
ImageIcon ii = new ImageIcon(this.getClass().getResource("Essaye-lapin2.gif"));
imageLabel.setIcon(ii);
imageLabel.setBounds(20,20,ii.getIconWidth(),ii.getIconHeight());
Frame.getContentPane().add(imageLabel, BorderLayout.CENTER);
je suis face à un mur de programmation Java, j'aimerais ajouter à une JFrame un Jlabel suite à à une réponse de clic, mais mon getContentPane ne peut recevoir un objet static.
Dons un petit coup de pouce me serais d'un grand secours !
Merci d'avance.
if (testLocation( p, ZONE_IMAGE_10, "mouseClicked - data 10")){
try {
JLabel imageLabel = new JLabel();
ImageIcon ii = new ImageIcon(this.getClass().getResource("Essaye-lapin2.gif"));
imageLabel.setIcon(ii);
imageLabel.setBounds(20,20,ii.getIconWidth(),ii.getIconHeight());
Frame.getContentPane().add(imageLabel, BorderLayout.CENTER);