I have a scenario where we need to manually size and position all of the controls in a certain window. We need the size/position to be the same regardless of the DPI scaling on the system. For standard Winforms controls, I can simply set the Window's AutoScaleMode property to 'None'. That will prevent the controls from auto-scaling as desired. However, if I have any Telerik controls in the Window, they are always automatically scaled no matter what I set the AutoScaleMode property to.
I know that there is a static RadControl.EnableDpiScaling property that can be used. If I set that to false, then that will indeed disable auto-scaling for any Telerik controls. However, that is a global setting. I do not want to disable auto-scaling across the entire application. I just need to disable it for a particular window.
Is this possible?
Thanks,
--Darren