Completed
Last Updated: 25 Jan 2019 07:50 by ADMIN
ADMIN
Dimitar
Created on: 30 Oct 2018 12:51
Category: Form
Type: Bug Report
3
FIX. RadForm - scaling does not work on Windows 10 1703
Use attached to reproduce.
Case 1 - the initial scaling is not correct and the showing dilog1 results in a different DPI each time. 
Case 2 - the AllowTheming property disabled the scaling - see dialog 2.

Workaround:

this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);

public class MyRadForm : RadForm
{
    protected override void HandleDpiChanged()
    {
        if (TelerikHelper.IsWindows10CreatorsUpdateOrHigher)
        {
            return;
        }

        base.HandleDpiChanged();
    }

}

Attached Files:
1 comment
Desislava
Posted on: 26 Dec 2018 05:31
The issue can also be reproduced on Windows Server 2008 R2 SP1.