====== Bouton dans un formulaire ====== private void Form1_Load(object sender, EventArgs e) { button1.Text = "Cliquez ici"; } private void button1_Click(object sender, EventArgs e) { MessageBox.Show("Vous avez cliqué sur le bouton"); }