0

I have a ScatterViewItem that I want to host a UserControl inside. Now I want to be able to toggle IsManipulationEnabled on the ScatterViewItem to lock it into place on a ScatterView.

When it's locked I want to be able to manipulate the UserControl inside (e.g panning, zooming, rotating, etc.).

If I set IsManipulationEnabled to false, then it seems to block all events to the UserControl because my ManipulationStarting, ManipulationDelta events hooked to my UserControl wont fire.

Is there a way around this problem? I'm just using a simple image as my UserControl at the moment.

Thanks.

JasonMArcher
  • 14,195
  • 22
  • 56
  • 52
David James Ball
  • 903
  • 10
  • 26

1 Answers1

0

Instead of ManipulationMode, use CanMove/CanRotate/CanScale

Robert Levy
  • 28,747
  • 6
  • 62
  • 94