This is a migrated thread and some comments may be shown as answers.

How to hide overflowbutton

2 Answers 112 Views
Toolstrip (obsolete as of Q3 2010)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
E
Top achievements
Rank 1
E asked on 29 Jun 2008, 10:31 PM
Hi, I would like to hide the overflowbutton that looks like a small arrow pointing down.  I thought setting the "showoverflowbutton" property to false would do it because setting it in design time appears to do the trick but when I run my app the arrow still shows.  Is there any way to hide it?

2 Answers, 1 is accepted

Sort by
0
Nikolay
Telerik team
answered on 01 Jul 2008, 12:11 PM
Hi,

Thank you for bringing the matter to our attention.

I've reproduced the issue. We will address it in one of our next releases. For the time being, I can suggest setting ShowOverFlowButton to true and then back to false in the Form constructor :

public Form1()  
{  
    InitializeComponent();  
 
    this.radToolStrip1.ShowOverFlowButton = true;  
    this.radToolStrip1.ShowOverFlowButton = false;  

I've updated your Telerik points account for this report. Feel free to contact me, if you have additional questions,.

Sincerely yours,
Nikolay
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Dan Wons
Top achievements
Rank 1
answered on 01 Jul 2008, 06:18 PM
Thanks that did the trick!!
Tags
Toolstrip (obsolete as of Q3 2010)
Asked by
E
Top achievements
Rank 1
Answers by
Nikolay
Telerik team
Dan Wons
Top achievements
Rank 1
Share this question
or