Skip to content

Instantly share code, notes, and snippets.

@jesusdesantos
Created November 3, 2022 10:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jesusdesantos/37b132fb7f0f0bfd75100b87dbcbf20d to your computer and use it in GitHub Desktop.
Save jesusdesantos/37b132fb7f0f0bfd75100b87dbcbf20d to your computer and use it in GitHub Desktop.
Right-To-Left TextBlock
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<StackPanel>
<TextBlock Background="DarkBlue" Foreground="LightBlue" FontSize="20" FlowDirection="LeftToRight">
This is a Left-To-Right TextBlock
</TextBlock>
<TextBlock Background="LightBlue" Foreground="DarkBlue" FontSize="20" FlowDirection="RightToLeft">
هذا كتلة نصية من اليمين إلى اليسار
</TextBlock>
</StackPanel>
</Page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment