Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WinForms > Dock > Disable close, floating button for Dock Panel

Not answered Disable close, floating button for Dock Panel

Feed from this thread
  • Ching-Yen avatar

    Posted on Apr 25, 2008 (permalink)

    Hi,

    May I know how can i Hide/Disable (prefer hide) the 3 button on top of each dock panel?

    Please advice.

    Regards,
    Ching-Yen Beh

    Reply

  • Julian Benkov Julian Benkov admin's avatar

    Posted on Apr 25, 2008 (permalink)

    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

    Reply

  • Eric avatar

    Posted on Nov 8, 2011 (permalink)

    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.

    Reply

  • Julian Benkov Julian Benkov admin's avatar

    Posted on Nov 11, 2011 (permalink)

    Hello Eric,

    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.

    Reply

  • Eric avatar

    Posted on Nov 11, 2011 (permalink)

    I do not have that property. I have ToolTipTextNeeded and ShowItemToolTips but noToolCaptionButtons. I do however, have the enumeration for ToolStripCaptionButtons

    Reply

  • Julian Benkov Julian Benkov admin's avatar

    Posted on Nov 16, 2011 (permalink)

    Hi Eric,

    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.

    Attached files

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WinForms > Dock > Disable close, floating button for Dock Panel
Related resources for "Disable close, floating button for Dock Panel"

[ Features | Demos | Documentation | Knowledge Base | Telerik TV | Code Library | Step-by-step Tutorial | Blogs | Self-Paced Trainer ]