I'm working on UltraExplorerBar now. But I got one trouble.
The spacing between items is too narrow to right click and display the ContextMenuStrip.
Is there any way to enlarge the spacing between items?
Hello Jim,
For some reason the images you tried to attach does not appear. Can you try to reattach them so I can look into this?
Thank you for your reply, but it doesn't work.
As you can see in the screenshot, the spacing between two items is so narrow that makes user difficult to click while I need right click to display a contextmenustrip.
Any other solutions?
thank you.
First of all, Thank you for your reply. But it doesn't work.
I want to change the spacing between items.
As you can see in the screenshot that the spacing between two items is extreamly narrow and it's really really hard to click to display a contextmenustrip.
Any other solution?
thanks.
To add some space between items you may set the Height of the items to some big enough value. You can do this for all the items like this:
this.ultraExplorerBar1.ItemSettings.Height = 100;
or to items in a particular group like this:
this.ultraExplorerBar1.Groups[0].ItemSettings.Height = 50;
or even to a single items like this:
this.ultraExplorerBar1.Groups[1].Items[2].Settings.Height = 150;
After setting this you may also need to set the vertical text and picture alignment of your items. To do so get the appropriate ItemSettings object and set TextVAlign and ImageVAlign as you need them. You can use code like this:
this.ultraExplorerBar1.ItemSettings.AppearancesSmall.Appearance.TextVAlign = VAlign.Top;this.ultraExplorerBar1.ItemSettings.AppearancesSmall.Appearance.ImageVAlign = VAlign.Top;
Please let me know if any additional questions on this matter arise.