Question How to make application auto scale able and responsive to all the windows platforms?

thippu

Active member
Joined
Mar 6, 2019
Messages
27
Location
Bangalore
Programming Experience
Beginner
Hi,
  1. I have developed an application on Windows,64 architecture machine and .net framework 4.5
  2. I copied the Release folder of the application and tested it on a laptop, But It was not scaled properly and not responsive and all the form controls were overlapped. solve this problem?
  3. I did use the following code also it did not work as expected:
Link:

4)I cannot understand this, please explain to me with an example
link to the topic:Automatic Scaling in Windows Forms
 
Last edited:
If you are using WinForms, you will always have scaling problems with DPI settings above 100% as DPI scaling in WinForms applications never worked properly.

Have a look here for some possible solutions: High DPI support in Windows Forms .

If you are using WPF, you will have none of those issues.
 
If you are using WinForms, you will always have scaling problems with DPI settings above 100% as DPI scaling in WinForms applications never worked properly.

Have a look here for some possible solutions: High DPI support in Windows Forms .

If you are using WPF, you will have none of those issues.
Thanks for the reply.
I will go through the link.
 
Last edited:
Back
Top Bottom