Declined
Last Updated: 06 Apr 2015 13:54 by ADMIN
ADMIN
Dimitar
Created on: 19 Nov 2014 12:35
Category:
Type: Feature Request
0
FIX. RadSpreadProcessing - when new workbook is created the application is made DPI aware and the form size is changed.
To reproduce:
- Add ribbon with a single button to a form.
- Upon the button click create a workbook.
- Change your DPI setting to 150%
- Start the app and press the button.

Workaround:
 - Add manifest file to the project.
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" >
   <asmv3:application>
        <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
             <dpiAware>false</dpiAware>
        </asmv3:windowsSettings>
   </asmv3:application>
</assembly>
1 comment
ADMIN
Stefan
Posted on: 06 Apr 2015 13:54
This behavior is expected. We have updated the following blog post with information how to handle it: http://blogs.telerik.com/winformsteam/posts/14-02-11/winforms-scaling-at-large-dpi-settings-is-it-even-possible-. See section "DPI Awareness and Document Processing Libraries".