I dont want the PIN button of "Infragistics.Win.UltraWinDock.
DockableControlPane" control to appear.
Just like making the PIN of the dockable screen as Visible = False.
Is there any way to do this.
mails2venkatesh,
In order to hide the pin buttons on the UltraDockManager, you need to set the ShowPinButton property to false. In C# the code would look like:
this.ultraDockManager1.ShowPinButton = false;
Hope this helps,
~Kim~
You can also hide the pin button on a single pane by setting the UltraDockManager.ShowDisabledButtons to False and the DockableControlPane.Settings.AllowPin to False.