Created
November 3, 2022 10:09
-
-
Save jesusdesantos/51a79dc4a0705c1e026ca757cf0c72ce to your computer and use it in GitHub Desktop.
Right-To-Left Span
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 Margin="1"> | |
<StackPanel Background="DarkBlue"> | |
<TextBlock FontSize="20" FlowDirection="RightToLeft"> | |
<Run FlowDirection="LeftToRight" Foreground="LightBlue">العالم</Run> | |
<Run FlowDirection="LeftToRight" Foreground="Red">فى سلام</Run> | |
</TextBlock> | |
<TextBlock FontSize="20" FlowDirection="LeftToRight"> | |
<Run FlowDirection="RightToLeft" Foreground="LightBlue">العالم</Run> | |
<Run FlowDirection="RightToLeft" Foreground="Red">فى سلام</Run> | |
</TextBlock> | |
<TextBlock FontSize="20" Foreground="CornflowerBlue">العالم فى سلام</TextBlock> | |
</StackPanel> | |
<StackPanel Background="LightBlue"> | |
<TextBlock FontSize="20" FlowDirection="RightToLeft"> | |
<Span Foreground="Red" FlowDirection="LeftToRight">Hello</Span> | |
<Span Foreground="DarkBlue" FlowDirection="LeftToRight">World</Span> | |
</TextBlock> | |
<TextBlock FontSize="20" FlowDirection="LeftToRight"> | |
<Span Foreground="Red" FlowDirection="RightToLeft">Hello</Span> | |
<Span Foreground="DarkBlue" FlowDirection="RightToLeft">World</Span> | |
</TextBlock> | |
<TextBlock FontSize="20" Foreground="CornflowerBlue">Hello World</TextBlock> | |
</StackPanel> | |
</StackPanel> | |
</Page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment