Development of .NET WinForms application: how to check if a window is in help mode (ie after clicking the "?" Button in the title bar)?
The problem is that my System.Windows.Forms.ToolStripItem objects do not have a HelpRequested event (because they are not inherited from Control), so in the Click event handler I try to determine if this window is really in help mode so that I can pop up tooltips programmatically.
Any help is always appreciated! Thanks
source
share