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
265
PerformAction(ClickActiveItem) Toolbox Style
posted

If the Explorer Bar style is set to ToolBox then this action does nothing. I assume because the ItemClick event doesn't work on the ToolBox style.

Is there anything we can do to get this working or something similar to simulate an item click?


Thanks

Parents
No Data
Reply
  • 9298
    Verified Answer
    posted

    The ItemClick event doesn't fire for items whose style resolves to "StateButton", which is the default item style for VisualStudioToolbox.  The ItemCheckStateChanged event will fire for State Buttons.  You can change the item style by setting the UltraExplorerBar.ItemSettings.Style property.  Try something like this:

    ultraExplorerBar1.ItemSettings.Style = ItemStyle.Button;

Children