Files
DEV/DEV.2.1/TP/TP8-Evenements/1.Fond/Fond.java

37 lines
950 B
Java
Raw Normal View History

2025-03-05 12:29:30 +01:00
import java.awt.*;
import javax.swing.*;
2025-03-05 20:44:11 +01:00
public class Fond extends JPanel implements ActionListener {
2025-03-05 12:29:30 +01:00
private JButton Cyan, Magenta, Jaune;
public Fond() {
2025-03-05 20:38:02 +01:00
this.setLayout(null);
2025-03-05 20:44:11 +01:00
2025-03-05 12:29:30 +01:00
this.Cyan = new JButton("Cyan");
this.Magenta = new JButton("Magenta");
this.Jaune = new JButton("Jaune");
this.Cyan.setBounds(100,50,100,20);
this.Magenta.setBounds(220,50,100,20);
this.Jaune.setBounds(320,50,100,20);
2025-03-05 20:38:02 +01:00
this.Cyan.addActionListener(this);
this.Magenta.addActionListener(this);
this.Jaune.addActionListener(this);
2025-03-05 20:44:11 +01:00
this.add(this.Cyan);
this.add(this.Magenta);
this.add(this.Jaune);
2025-03-05 20:38:02 +01:00
}
@Override
public void actionPerformed(ActionEvent evenement) {
if (evenement.getSource() == this.Cyan) {
2025-03-05 20:44:11 +01:00
this.setBackground(Color.CYAN);
2025-03-05 20:38:02 +01:00
} else if (evenement.getSource() == this.Magenta) {
2025-03-05 20:44:11 +01:00
this.setBackground(Color.MAGENTA);
2025-03-05 20:38:02 +01:00
} else if (evenement.getSource() == this.Jaune) {
2025-03-05 20:44:11 +01:00
this.setBackground(Color.YELLOW);
2025-03-05 20:38:02 +01:00
}
2025-03-05 12:29:30 +01:00
}
}