I have a base UserControl (BaseControl.cs) which has an OK and Cancel buttons on it. When the buttons are clicked, an event is fired. Typically other UserControl objects inherit from the BaseControl. Finally the descendant UserControl objects are placed on a WinForm, where they hook into the events for clicking Ok/Cancel buttons.
My question is this: in the descendant control, I'd like to intercept the events (to run some validation). How can hook into (or intercept) the these events?
Thanks.