Guest User

Untitled

a guest
Nov 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public BaseViewModel()
  2. {
  3. Language.PropertyChanged += (sender, e) =>
  4. {
  5. if (Language.CurrentLanguageAbbr == LanguageCode.Arabic)
  6. {
  7. FlowDirection = FlowDirection.RightToLeft;
  8. }
  9. else
  10. {
  11. FlowDirection = FlowDirection.LeftToRight;
  12. }
  13. };
  14. }
Add Comment
Please, Sign In to add comment