1

Is there a XAML control which would allow me to add a few Images, and then allow the user to pan, zoom, and drag those images? I'm creating a Windows 8 app which needs to have images (cards) on a background, and the user should be able to pan around, zoom in, and drag the cards. I'm fine using a third-party solution (as long as it's not paid) if there's no built-in way to do it.

MatthewSot
  • 3,516
  • 5
  • 39
  • 58

1 Answers1

0

You need to handle the ManipulationDelta events. See this page for some examples of how to work with it.

XAML Example

<Rectangle Name="TestRectangle" Width="200" Height="200" Fill="Blue" ManipulationMode="All"/>
Mythul
  • 1,807
  • 7
  • 34
  • 53