Skip to content

Instantly share code, notes, and snippets.

@s-fernandez-v
Forked from jesusdesantos/Main.xaml
Last active November 3, 2022 12:13
Show Gist options
  • Save s-fernandez-v/aade274306acc6e9f7a1ee603f46baf4 to your computer and use it in GitHub Desktop.
Save s-fernandez-v/aade274306acc6e9f7a1ee603f46baf4 to your computer and use it in GitHub Desktop.
Right-to-left Image
<StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
Orientation="Horizontal" VerticalAlignment="Center" FlowDirection="RightToLeft">
<Border BorderBrush="OrangeRed" BorderThickness="2" Margin="5">
<Image Source="Road.jpg" Height="300"/>
</Border>
<Border BorderBrush="Gold" BorderThickness="2" Margin="5">
<Image Source="Road.jpg" Height="300" FlowDirection="RightToLeft"/>
</Border>
</StackPanel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment