0

i have an application in C#... Why Forms Design changes between XP sp2 and XP sp3 in C#? Does the compatibility? What is the solution to get similar Forms design in C#?

Brian Rasmussen
  • 114,645
  • 34
  • 221
  • 317
Mohamad Mahmoud Darwish
  • 3,865
  • 9
  • 51
  • 76

1 Answers1

2

It might be a difference in the DPI setting in Windows that causes the change in your application.

Check this guide to see if you have a different value (standard is 96 dpi): http://www.lawfirmsoftware.com/support/change_dpi_settings_xp.htm

You will need to change your winforms app to be dpi independant. Take a look at this question for more help: How to control the font DPI in .NET WinForms app

Community
  • 1
  • 1
ZippyV
  • 12,540
  • 3
  • 37
  • 52