5 Answers, 1 is accepted
0
Hello Ching-Yen,
To hide the system buttons of DockPanel object you can set to false the following properties:
dockPanel1.CloseButtonVisible = false;
dockPanel1.HideButtonVisible = false;
dockPanel1.DropDownButtonVisible = false;
I hope this was helpful. If you have additional questions, please contact us.
Regards,
Julian Benkov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
To hide the system buttons of DockPanel object you can set to false the following properties:
dockPanel1.CloseButtonVisible = false;
dockPanel1.HideButtonVisible = false;
dockPanel1.DropDownButtonVisible = false;
I hope this was helpful. If you have additional questions, please contact us.
Regards,
Julian Benkov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Eric
Top achievements
Rank 1
answered on 08 Nov 2011, 11:51 PM
These properties do not exist in the version I'm using 2009 Q3. Could you please provide assistance on how to do this for my version? Thanks.
0
Hello Eric,
To show all system buttons, you can use:
Greetings,
Julian Benkov
the Telerik team
This property is valid for the deprecated DockingManager control. For the RadDock control you can use ToolCaptionButtons property:
this
.toolWindow1.ToolCaptionButtons = ToolStripCaptionButtons.None;
To show all system buttons, you can use:
this
.toolWindow1.ToolCaptionButtons = ToolStripCaptionButtons.Close | ToolStripCaptionButtons.AutoHide | ToolStripCaptionButtons.SystemMenu;
Greetings,
Julian Benkov
the Telerik team
Q2’11 SP1 of RadControls for WinForms is available for download (see what's new); also available is the Q3'11 Roadmap for Telerik Windows Forms controls.
0
Eric
Top achievements
Rank 1
answered on 11 Nov 2011, 07:00 PM
I do not have that property. I have ToolTipTextNeeded and ShowItemToolTips but noToolCaptionButtons. I do however, have the enumeration for ToolStripCaptionButtons
0
Hi Eric,
Julian Benkov
the Telerik team
I made a test with Q3 2009 release with RadDock control that support this functionality. Please view the attached screenshots for details.
Greetings,Julian Benkov
the Telerik team
Q2’11 SP1 of RadControls for WinForms is available for download (see what's new); also available is the Q3'11 Roadmap for Telerik Windows Forms controls.