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