Context:
Form / TableLayoutPanel / UserControl
Example handler in the user control:
protected override void OnMouseDown(MouseEventArgs e)
{
base.OnMouseDown(e);
}
I want to notify the Form that the UserControl intercepted the OnMouseDown event and the form needs to know what Point the user had clicked.
How can I acheive this? Thanks!