We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added this to test how focusing works:
''' //in ExampleForm() graphControl.MouseUp += new MouseEventHandler(graphControl_MouseUp);
//elsewhere void graphControl_MouseUp(object sender, MouseEventArgs e) { SystemSounds.Beep.Play(); if (graphControl.FocusElement != null) lblFocus.Text = graphControl.FocusElement.ToString(); else lblFocus.Text = string.Empty;
}
'''
When you click and hold, you will hear a beep, and another when you let go.
The text was updated successfully, but these errors were encountered:
Thanks & it's fixed now :) It had to do with the event delegates being called before the actual work had been done.
Sorry, something went wrong.
No branches or pull requests
Added this to test how focusing works:
'''
//in ExampleForm()
graphControl.MouseUp += new MouseEventHandler(graphControl_MouseUp);
//elsewhere
void graphControl_MouseUp(object sender, MouseEventArgs e)
{
SystemSounds.Beep.Play();
if (graphControl.FocusElement != null)
lblFocus.Text = graphControl.FocusElement.ToString();
else
lblFocus.Text = string.Empty;
'''
When you click and hold, you will hear a beep, and another when you let go.
The text was updated successfully, but these errors were encountered: