Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
155
Explorer Bar Context Help Problem
posted

I am looking at introducing context sensitive help to out application. I currently looking at providing help topics for our main menu bar which is an UltraWinExplorerBar and the various functions that are accessible from it.

I currently have a solution in place which happily acts on the HelpRequested event of the explorer bar when F1 is pressed. What I also need to do allow for the "Whats This ?" style help functionality which I am inducing via use of the Win32 API function SendMessage passing SC_CONTEXTHELP as the message.

The explorer bar items do not seem to respond to this and just perform their normal action when pressed and the HelpRequested event doesn't fire.

Does the explorer bar support this or is there something I need to setup to get it to respond?

Thanks

Parents
  • 69832
    Offline posted

    There is no support for that beyond whatever it picks up for free from the base System.Windows.Forms.Control class. I don;t know if this will help, but if you know when you are in this mode, it would seem you could handle MouseDown, use ItemFromPoint to find the item that was clicked, and then react to that accordingly.

Reply Children
No Data