Reputation: 25959
As the title says, I want to prevent the FlipView from scrolling under certain situations. Is there a way to do this? (In C# please!)
Upvotes: 1
Views: 2779
Reputation: 31724
That's easy. Set
FlipView.IsEnabled = false;
If the above somehow causes undesired visual state of your controls - you can also set
ManipulationMode="All"
on any any item inside of the FlipView to steal control over manipulations from the underlying scroll view. This also works on any other controls with a scroll view - like a ListView, GridView or ListBox.
Upvotes: 5