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
145
ultraExplorerBar event to catch sticky note button click in context menu >>
posted

Hello,

I've an ultraExplorerBar with OutlookNavigationPane style and 4 groups. When you click on the ">>" button then click "Show Fewer Buttons" Stickynote icons appear which represent a group navigation button.
Now I collapse the NavigationPane with "<<".
The Stickynote icons appear in the ">>" context menu.
 I want to catch the click event of that sticky note button in the context menu ">>".
ultraExplorerBar1_GroupClick won't do.

Thanks
migeold.

Parents
No Data
Reply
  • 69832
    Offline posted

    The control fires the NavigationContextMenuInitializing event before that context menu is displayed. You can probably hook the Click event of that menu item, if you can identify it. I can't recall whether there is a robust way to do that (the menu item's Text can be changed, so casing off that might not be a good idea). If you can't reference the menu item, you could remove it altogether and replace it, and hook the Click event of that menu item; in either case you would then receive a notification when the menu item is clicked.

Children