salut tout le monde
j'ai un problème au niveaux de fermeture de form, mon code ça marche pas, merci d' avance
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14 private void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e) { //on declare une variable de type dialogresult DialogResult reponse; reponse = MessageBox.Show("Voulez vous fermer ?", "Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (reponse == DialogResult.Yes) { Application.ExitThread(); this.Close(); } }
Partager