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

ribbontab minimize when clicking on start menu

1 Answer 51 Views
RibbonBar
This is a migrated thread and some comments may be shown as answers.
Randy
Top achievements
Rank 1
Randy asked on 18 Jan 2013, 02:29 PM
Hi
How can i minimize Ribbon Tab when clicking on start menu  if ribbon bar expanded property is set to true
 

Best Regards,
Randy

1 Answer, 1 is accepted

Sort by
0
Stefan
Telerik team
answered on 21 Jan 2013, 09:23 AM
Hi Randy,

Thank you for writing.

To minimize the ribbon when the application button is clicked, you should set the Expanded property to false. Here is a sample:
radRibbonBar1.RibbonBarElement.ApplicationButtonElement.Click += ApplicationButtonElement_Click;
 
void ApplicationButtonElement_Click(object sender, EventArgs e)
{
    radRibbonBar1.Expanded = false;
}

I hope this helps.
 

All the best,
Stefan
the Telerik team
Q3'12 SP1 of RadControls for WinForms is out now. See what's new.
Tags
RibbonBar
Asked by
Randy
Top achievements
Rank 1
Answers by
Stefan
Telerik team
Share this question
or