Form's controls direction

  • Thread starter Thread starter Lev
  • Start date Start date
L

Lev

Hi all,

I need to develop multilingual WinForms application and one of the demands -
RightToLeft support.
When the user choose one of the RTL languages (hebrew or arabic), the form
will looks mirrored.
The implementation of RightToLeft property of the form and all it's controls
gets partly result only.

For example, in English the lable position usualy on the left side of
textbox, in Hebrew it is should be on the right side of the textbox.

Have an ideas how to implement that?

Thank U 4 advanced,
Lev
 
Hi,

You can probably set the form's MultiLanguage property to true and create
several designs matching various languages and cultures.
 
Dear Dmytro,
Thank you for your answer, but I already found the solution.
Here is an answer:
http://msdn.microsoft.com/library/d...vbtskCreatingMirroredWindowsFormsControls.asp


Dmytro Lapshyn said:
Hi,

You can probably set the form's MultiLanguage property to true and create
several designs matching various languages and cultures.

--
Sincerely,
Dmytro Lapshyn [Visual Developer - Visual C# MVP]


Lev said:
Hi all,

I need to develop multilingual WinForms application and one of the
demands -
RightToLeft support.
When the user choose one of the RTL languages (hebrew or arabic), the form
will looks mirrored.
The implementation of RightToLeft property of the form and all it's
controls
gets partly result only.

For example, in English the lable position usualy on the left side of
textbox, in Hebrew it is should be on the right side of the textbox.

Have an ideas how to implement that?

Thank U 4 advanced,
Lev
 
Back
Top