-
-
Save s-fernandez-v/aade274306acc6e9f7a1ee603f46baf4 to your computer and use it in GitHub Desktop.
Right-to-left Image
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" | |
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