0

I am using Expression Blend + Sketch Flow 4

How to make the image box to have a border?

<Image HorizontalAlignment="Left" Height="100" Border = "2" Margin="60,60,0,0" VerticalAlignment="Top" Width="100"/>

I have try the XAML code with border = "2" But is not working. Any idea ?

Justin XL
  • 38,763
  • 7
  • 88
  • 133
Carson Lee
  • 2,673
  • 3
  • 20
  • 23

1 Answers1

1

You need to wrap your Image with a Border. :)

<Border BorderBrush="Black" BorderThickness="2" ... >
    <Image ... />
</Border>
Justin XL
  • 38,763
  • 7
  • 88
  • 133