I have a Panel which contains 20 PictureBox controls. If a user clicks on any of the controls, I want a method within the Panel to be called.
How do I do this?
public class MyPanel : Panel
{
public MyPanel()
{
for(int i = 0; i < 20; i++)
{
Controls.Add(new PictureBox());
}
}
// DOESN'T WORK.
// function to register functions to be called if the pictureboxes are clicked.
public void RegisterFunction( <function pointer> func )
{
foreach ( Control c in Controls )
{
c.Click += new EventHandler( func );
}
}
}
How do I implement RegisterFunction()?
Also, if there are cool C# features that can make the code more elegant, please share.
A “function pointer” is represented by a delegate type in C#. The
Clickevent expects an delegate of typeEventHandler. So you can simply pass anEventHandlerto the RegisterFunction method and register it for each Click event:Usage:
Note that this adds the
EventHandlerdelegate to every control, not just the PictureBox controls (if there are any other). A better way is probably to add the event handlers the time when you create the PictureBox controls:The method that the
EventHandlerdelegate points to, looks like this: