locked
Why the controls of windows form positioned is change in different languages RRS feed

  • Question

  • Why the controls of windows form positioned is change in different languages and how can i set position of control that neither changes its position for different langauges

    cmj

    Wednesday, February 8, 2012 10:53 AM

Answers

  • I would imagine that the difference in postion is simply because the size of the text content of the controls (or surrounding content) is different.  You need to address how your controls are laid out and sized if it's important that they not be affected by the size of their text content.  This might mean setting fixed sizes (large enough for the text of the language with the largest size) and/or fixed positions of various controls.
    Wednesday, February 8, 2012 3:23 PM

All replies

  • I have never seen anything like that happening automatically. May, you have some code that is causing the position to change. Check your form load or resize event handlers for any such code.

    Please mark this post as answer if it solved your problem. Happy Programming!

    Wednesday, February 8, 2012 10:59 AM
  • I would imagine that the difference in postion is simply because the size of the text content of the controls (or surrounding content) is different.  You need to address how your controls are laid out and sized if it's important that they not be affected by the size of their text content.  This might mean setting fixed sizes (large enough for the text of the language with the largest size) and/or fixed positions of various controls.
    Wednesday, February 8, 2012 3:23 PM