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
213
Expose explorer bar groups in user control
posted

Hi,

I have a user control that I have created that has an explorer bar on it. I have exposed the groups property of the explorer bar on my control as follows:

[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
[Editor(typeof(GroupsItemsTypeEditor), typeof(UITypeEditor))]
public UltraExplorerBarGroupsCollection Groups
{
     get { return ultraExplorerBar1.Groups; }
}

This is the same as the groups property on the explorer bar, however the little button that shows up in the properties grid is not shown. Is there a way to allow the user of my control to use the UltraExplorerBar designer to add groups and items or is this not possible?

I'm using v10.2

Thanks.