Completed
Last Updated: 01 Oct 2014 13:02 by ADMIN
ADMIN
George
Created on: 14 Mar 2014 14:43
Category: RibbonBar
Type: Bug Report
0
FIX. RadRibbonBar - Closing the form from the backstage view causes exception.
To reproduce:

Add a RadRibbonForm and set the theme to Office2013Light. Start the application and click the backstage button. Click the close button and you will see an exception.

Workaround:

this.RibbonBar.BackstageControl.BackstageElement.TitleBarElement.CloseButton.MouseDown += TitleBarElement_MouseDown;
void TitleBarElement_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
    this.RibbonBar.BackstageControl.BackstageElement.TitleBarElement.CanManageOwnerForm = false;
    this.Close();
}

0 comments