Skip to content

Instantly share code, notes, and snippets.

@jesusdesantos
Created November 3, 2022 10:26
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/2727b95c03033cdbd6287324ea8ebb91 to your computer and use it in GitHub Desktop.
Save jesusdesantos/2727b95c03033cdbd6287324ea8ebb91 to your computer and use it in GitHub Desktop.
Right-To-Left Path
<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