I would like to remove the Configure Buttons button from UltraExplorerBar. Is there a way to do this?
I have been able to remove all contexts from it, but this button should also dissappear.
thx
Hi,
I just wanted to know if you were able to solve your issue based on the information which I have provided you? Just let me know.
Thank you.
No, we haven't been able to solve this. We'll need to dig in deeper.
Hello,
Dockable menu in the default context menu is displayed when the owner form is MidParent. If you want to remove this menu for all ControlPanes of UltraDockManager you could set CanDisplayAsMdiChild to false of DefaultPaneSettings
ultraDockManager1.DefaultPaneSettings.CanDisplayAsMdiChild = Infragistics.Win.DefaultableBoolean.False;
If you want to remove this menu for specific control pane you should set this property to the desired pane:
ultraDockManager1.ControlPanes[0].Settings.CanDisplayAsMdiChild = Infragistics.Win.DefaultableBoolean.False;
Please let me know if you have any further questions.
Sorry, apparently embedding this image is somewhat problematic... ;-)
http://i45.tinypic.com/2884j8p.jpg
Here a screenshot of what I would want to accomplish. The Dockable should be greyed out.
<a href="http://tinypic.com?ref=2884j8p" target="_blank"><img src="http://i45.tinypic.com/2884j8p.png" border="0" alt="Image and video hosting by TinyPic"></a>
thx, Lieven
In order to provide you more efficient help I have implemented code snippet provided by Brian Fallon in the link which I have pointed. Please run the sample and let me know if this is what you are looking for.
Also on the following link you will find more information about IUICreationFilter interface:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2012.1/CLR2.0/html/Win_Creation_Filter.html
Please let me know if you need any further assistance on this.