Completed
Last Updated: 19 Jun 2017 12:03 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 09 Jan 2017 09:18
Category: Form
Type: Bug Report
1
FIX. RadRibbonForm - when the form is maximized on a two monitor system a few pixels are visible on the second monitor with Windows10
Please refer to the attached sample project.

Workaround:
this.SizeChanged += RadForm1_SizeChanged;
private void RadForm1_SizeChanged(object sender, EventArgs e)
{
    if (this.WindowState == FormWindowState.Maximized  && !this.IsMdiChild)
    {
        this.Region = null;
    }
}
2 comments
ADMIN
Stefan
Posted on: 19 Jun 2017 12:03
Hi Danilo,

the case is resolved in R1 2017 SP1, feel free to upgrade to it in order to take advantage of the fix.
Danilo
Posted on: 08 Feb 2017 16:04
Thank you so much.
Unfortunately the work around has another side-effect: the top-most part of the application window (the non client area part) sometimes appears non themed. Due to this worst effect this work around is not applicable at all.