I have a form with a custom control in it. That control has an event handler on the ItemChanged event.
private void ncNomSimple_ItemChanged(object sender, EventArgs e)
{
some code..
}
I inherit this form, thus I have the control and the event in my new form but I want another event handler in my new form to be called for that event, not the above one. How can I achieve this?
In the base class:
In the derived class: