Événement cliquez sur les formulaires Windows Forms Windows

// Just add an event handler using the += operator:
pictureBox1.MouseClick += new MouseEventHandler(your_event_handler);
// or:
pictureBox1.MouseClick += new MouseEventHandler((o, a) => code here);
Schmidii