Created
November 3, 2022 10:26
-
-
Save jesusdesantos/2727b95c03033cdbd6287324ea8ebb91 to your computer and use it in GitHub Desktop.
Right-To-Left Path
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
<StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
FlowDirection="RightToLeft"> | |
<Path Stroke="Blue" StrokeThickness="4" | |
Data="M300,10L350,30M10,30L352,30M300,50L350,30"/> | |
<Path Stroke="Red" StrokeThickness="4" | |
Data="M300,10L350,30M10,30L352,30M300,50L350,30" | |
FlowDirection="RightToLeft"/> | |
<Path Stroke="Green" StrokeThickness="4" | |
Data="M300,10L350,30M10,30L352,30M300,50L350,30" | |
FlowDirection="LeftToRight"/> | |
</StackPanel> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment