Hello All,
I have a problem regarding UltraExplorerBar items arrangement. I don't want users to drag and drop the items and make their own arrangement at runtime. I've tried to accomplish it by setting the AllowDrop property to false but still getting the same behavior. Is there any way to accomplish it. Thanks in advance.
AllowDrop is inherited from the System.Windows.Forms.Control class and is related to .NET drag/drop, not the control's internal item dragging. You can disallow item dragging by setting the UltraExplorerBar.ItemSettings.AllowDragMove/AllowDragCopy properties to false.
Thanks for the reply.