I have a Standard Win application using VS2015, Mostly we copy same project to many different solution based on custom development. Currently I am facing some issue related to Form size. In Both Projects all forms and Properties are same. When I run both project in same machine, the form size is different.
I have Compared the form properties in both projects like Auto Scale Mode, Auto Size mode, Min Size, Max Size etc,. There is no difference. I am not sure which property causing this issue.
Note: Both Project developed by myself. It happens once already in another development. So its time to take action for this issue. Thanks
Application 1 is copied from Application 2
Update: 1 Just find app.manifest file from your project and add the piece of line from the link @jimi comment. The Form Size Back to Normal. Here is the code which i added to my app.manifest
<asmv1:application>
<asmv1:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<dpiAware>false</dpiAware>
</asmv1:windowsSettings>