Unplanned
Last Updated: 06 May 2016 13:37 by ADMIN
ADMIN
Dimitar
Created on: 20 Apr 2016 10:52
Category: RibbonBar
Type: Bug Report
1
FIX. RadRibbonForm - there is a black border when the Office2013Light theme is used and the form state is changed.
Use the attached project to reproduce.

Workaround:
private void RadForm1_SizeChanged(object sender, EventArgs e)
{
    if (this.WindowState == FormWindowState.Normal)
    {
        this.SizeChanged -= RadForm1_SizeChanged;
        this.Size = new Size(this.Size.Width + 1, this.Size.Height + 1);
        this.Size = new Size(this.Size.Width - 1, this.Size.Height - 1);

        this.SizeChanged += RadForm1_SizeChanged;
    }
}


Attached Files:
0 comments