Hello,
In a list item, I have a couple of UI elements I want to hide once the user starts to swipe. Is there an event I can listen to that tells me this? I've tried reacting to the ManipulationStarting
etc, but that doesn't seem to do anything.
Any help is appreciated here. Thanks!
If you set ManipulationMode
you can enable the ManipulationStarting
Event. This should be what you're after.
ManipulationMode="All"
ManipulationStarting="SwipeControl_ManipulationStarting"
@mrlacey This solved it for me! Thank you!
Most helpful comment
If you set
ManipulationMode
you can enable theManipulationStarting
Event. This should be what you're after.