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.
It was just the information I was looking for! Thank you guys!
Seeing some buttons (pin buttons and close buttons) that are disabled just gets our customers frustrated and our call center too busy!
M
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.
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~