views:

85

answers:

2

Hi, In my C# winform application I have a link label. when the text in the link label is localize to chinese the text is cut off at the buttom by the line of the link label.

Any idea?

A: 

It could be the font you are using for the link label. Try changing the font or setting different size.

I don't think you've posted enough information. You could post a screenshot.

hawk
+1  A: 

East Asian machines tend to run with a larger system font size to make characters more legible. The setting of Form.AutoScaleMode matters, so does the Form's Font vs the control's Font. Ensure that your form scales properly.

Hans Passant