When you right click an item under a goup in UltraExplorerBar a pop-up menu appears.
How can I disable this feature? or how can I disable these two buttons?
I already disabled the Edit Item by setting AllowEdit to false in that item, but I cant find a property that related to the remove item.
any help is greatly appreciated.
This can be made in the groupo with ItemSettings/Settings like
private void initDisabledGoup(UltraExplorerBarGroup group) { group.ItemSettings.AllowDragMove = ItemDragStyle.WithinGroupOnly; group.ItemSettings.AllowDragCopy = ItemDragStyle.WithinGroupOnly; group.ItemSettings.AllowEdit = DefaultableBoolean.False; group.Settings.AllowDrag = DefaultableBoolean.False; group.Settings.AllowItemDrop = DefaultableBoolean.False; group.Settings.AllowEdit = DefaultableBoolean.False; }
in C#
That works for the whole control, but what about on a group or an individual item in a group.
I have groups and items that I don't want the user to be allowed to move, delete, etc.
Perfect. Thank you.
Problems solved...
Select the UltraExplorerBar, then search the propery showdefaultcontextmenu in the properties window and set it to false.