Home > Mobile >  Issue with Winforms Controls Shifting On Some Computers
Issue with Winforms Controls Shifting On Some Computers

Time:08-27

I am running into an issue where on one of my user's pc (Win10) the comboboxes are being shifted. On the left is how they look in the user control and on the left is how they are displayed to the user. They have the same display settings as the other users, so same screen resolution, scale, and orientation. I checked the anchoring for the dropdownlist and it is anchored the same as the textboxes. I am at a loss at what to check next to see where the issue is and hoping someone might know something else I can check. Thanks.

enter image description here

CodePudding user response:

I want to thank @brennan208 for his help in troubleshooting the issue. After a bit of discussion with Telerik they pointed me to their documentation here that has general tips for designing scalable WinForms. What I needed to do was place my controls in a TableLayoutPanel, so now when I change the scaling the controls correctly scale as well. Painful lesson and I hope the article helps others. Thanks.

Wade

  • Related