How to make whole window direction right to left? #2691
Replies: 3 comments 1 reply
-
Hi @khaledmahmoud78 , Thanks for the inquiry. Unfortunately no RTL support has been added to Eto at this point. I would definitely welcome supporting this though. I'm just not sure how difficult it would be to add to each of the platforms. |
Beta Was this translation helpful? Give feedback.
-
A pressing question. A month ago, a user of my program also asked about adding RTL support for Arabic. I couldn't help him. |
Beta Was this translation helpful? Give feedback.
-
In Eto.Forms, to switch the direction of the window and all controls to Right-to-Left (RTL) for Arabic or similar languages, you can set the FlowDirection property of the controls and form to RightToLeft. Here's how you can achieve this: For the Form itself, set the FlowDirection property to RightToLeft: var button = new Button { Text = "اضغط هنا" }; |
Beta Was this translation helpful? Give feedback.
-
I am an Arab, I would like to make apps in Arabic language.
So I need to switch the direction of the window and all controls to RTL.
In WinForms, There is a property named "RightToLeft" to switch control direction.
How I can do this in Eto.Forms?
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions