-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaFenetre.java
53 lines (47 loc) · 1.92 KB
/
MaFenetre.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class MaFenetre extends JFrame {
private JComboBox<String> choix;
private JButton relancerButton;
public MaFenetre() {
// Initialisation de la fenêtre
setTitle("Exemple de relance de page");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(300, 200);
// Initialisation des composants
String[] options = {"Choix 1", "Choix 2", "Choix 3"};
choix = new JComboBox<>(options);
relancerButton = new JButton("Relancer la page");
// Ajout des composants à la fenêtre
JPanel panel = new JPanel();
panel.add(new JLabel("Sélectionnez une option :"));
panel.add(choix);
panel.add(relancerButton);
add(panel);
// Ajout d'un gestionnaire d'événements au bouton
relancerButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// Vérifier si le choix est incorrect
String selectedOption = (String) choix.getSelectedItem();
if ("Choix 1".equals(selectedOption)) {
// Si le choix est incorrect, relancer la page ici
JOptionPane.showMessageDialog(MaFenetre.this, "Choix incorrect. Relancez la page!");
// Vous pouvez ajouter du code pour réinitialiser la page ici
} else {
// Le choix est correct, faire d'autres actions ici si nécessaire
JOptionPane.showMessageDialog(MaFenetre.this, "Choix correct!");
}
}
});
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new MaFenetre().setVisible(true);
}
});
}
}