Created
November 3, 2022 10:02
-
-
Save jesusdesantos/37b132fb7f0f0bfd75100b87dbcbf20d to your computer and use it in GitHub Desktop.
Right-To-Left TextBlock
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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