Completed
Last Updated: 22 Jul 2019 13:28 by ADMIN
Release R3 2019 (LIB 2019.2.729)
GLENN
Created on: 09 Jul 2019 08:17
Category: RibbonBar
Type: Bug Report
1
RadRibbonBar: When the form is maximized and BackstageView is open part of the form is drawn outside of the screen
Create a RadRibbonForm.
Set the ApplicationMenuStyle of RibbonBar to BackstageView
Run the form and maximize it.
Open BackstageView and you will see that part of the form is drawn outside of the screen.
1 comment
ADMIN
Todor
Posted on: 09 Jul 2019 08:21
Hello,

As a workaround you can manually remove the padding when form is maximized:
protected override void OnSizeChanged(EventArgs e)
{
    base.OnSizeChanged(e);
  
    if (this.WindowState == FormWindowState.Maximized)
    {
        this.radRibbonBarBackstageView1.Width -= this.Padding.Horizontal;
    }
}

Regards,
Todor Vyagov
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.