This is the inverse question to C# Get a control's position on a form.
Given a Point location within a form, how can I find out which control is visible to the user at that position?
I'm currently using the HelpRequested form event to show a separate help form as shown in MSDN: MessageBox.Show Method.
In the MSDN example the events sender
control is used to determine the help message, but the sender
is always the form and not the control in my case.
I'd like to use the HelpEventArgs.MousePos to get the specific control within the form.