Hello! i have a standard mouseEventHandler :
a.MouseClick += new MouseEventHandler(labelClick);
where a is a label. the function called on click is like so :
private void labelClick(object sender,MouseEventArgs mea)
{
MessageBox.Show("click on the label");
}
How can i send more information to the called function? (i.e. i have a lot of labels ; for each label i would like to send 2 strings for my location and address )
Regards, Alexandru Badescu