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
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;
Thanks for that. I've just added some code to handle the ItemCheckStateChanged event as well and used the PerformAction(CheckActiveItem).