3 Answers, 1 is accepted
0
Accepted
Hi,
Thank you for writing.
If you want to collapse the whole ribbon please consider the following property;
Alternatively, to collapse a single group, you can use its Visibility property:
Stefan
the Telerik team
Thank you for writing.
If you want to collapse the whole ribbon please consider the following property;
radRibbonBar1.Expanded =
false
;
Alternatively, to collapse a single group, you can use its Visibility property:
radRibbonBarGroup1.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
If the above mentioned information is not what you are looking for, please provide me with a sketch where the area which you want to collapse is highlighted.
I am looking forward to your reply.
Stefan
the Telerik team
Q3'12 SP1 of RadControls for WinForms is out now. See what's new.
0
In this case you should collapse the ribbon as in my first suggestion from the previous post.
Additionally, if you want to prevent the ribbon from expanding/collapsing when double clicked and to hide the expand/collapse button, please consider the following code:
Stefan
the Telerik team
Additionally, if you want to prevent the ribbon from expanding/collapsing when double clicked and to hide the expand/collapse button, please consider the following code:
radRibbonBar1.RibbonBarElement.ExpandButton.Visibility = ElementVisibility.Collapsed;
radRibbonBar1.RibbonBarElement.CollapseRibbonOnTabDoubleClick =
false
;
Stefan
the Telerik team
Q3'12 SP1 of RadControls for WinForms is out now. See what's new.