This commit is contained in:
Simoes Lukas
2025-09-24 16:24:52 +02:00
parent 2c3e150ec5
commit 3b7b5533c1
31 changed files with 355 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import java.awt.*;
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class ControleurBoutonOui implements ActionListener {
private JFrame fenetre;
public ControleurBoutonOui(JFrame fenetre) {
this.fenetre = fenetre;
}
public void actionPerformed(ActionEvent e) {
this.fenetre.dispose();
}
}