Completed
Last Updated: 24 Jul 2015 10:20 by ADMIN
ADMIN
Hristo
Created on: 01 Jul 2015 11:50
Category: Form
Type: Bug Report
0
FIX. RadForm - is not properly scaled when DPI is different than 96
Broken in Q2 2015

Workaround: get current dpi settings and resize the form
float dpiX = 0;
float dpiY = 0;
Graphics graphics = this.CreateGraphics();
dpiX = graphics.DpiX;
dpiY = graphics.DpiY;

this.Width *= dpiX / 96;
this.Height *= dpiY / 96;
4 comments
ADMIN
Stefan
Posted on: 24 Jul 2015 10:20
Yes, I guess these emails are are little confusion as not many people see when an item is scheduled for. 
Mark
Posted on: 24 Jul 2015 10:02
OK.  Thanks.  I had an email to say it was fixed.
ADMIN
Stefan
Posted on: 24 Jul 2015 09:37
Hi Mark,

in the right pane, you can see that this case is scheduled for the Q2 2015 SP1 release, which is not yet released. We are going to make it public next week. Once it is out, you can download it and apply it to your project.
Mark
Posted on: 24 Jul 2015 09:08
I have installed the new version.  This doesn't fix the bug.  As soon as I deploy on a 120dpi system I get the same issue.  Not happy as I now have to remove the new version and go back to the older one again.