0

I've been trying to move an image by setting its margin but that only changes it size. I want to move an image by changing its x coordinate. How can I do that(in xaml, pages and not wpf)?

ABC
  • 33
  • 6

1 Answers1

0

You're image may have it's Stretch set to fill the available space. When you change the margin that could give the image more space so the image expands to fit. If you set the StretchMode to None you may see the margin will affect the position instead.

Bryan Stump
  • 1,419
  • 2
  • 17
  • 26