problème de fermeture(form_closing)
salut tout le monde
j'ai un problème au niveaux de fermeture de form, mon code ça marche pas, merci d' avance
Code:
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();
}
} |