views:

91

answers:

2

Hi All,
I have a sample .net application which consist of 2 forms. I have used images and various controls over these forms. When I run this application under XP or Win 7 English version, it works fine. But, when I run this application under Chinese version OS, the form size changes. It increases the form size, causing distorted forms.
Does anybody aware of this issue?
Thanks in advance.

+1  A: 

I have tried various options. To resolve this problem we need to set Forms

AutoScaleMode

property to none. This resolves the problem for 96 dpi settings.

Vijay Balkawade
A: 

Set the following properties for the Windows Form: 1. AutoScaleMode = None, 2. AutoSize = True. This will do it. Good Luck

Lakshmi Viswanathan