I'm trying to support a swiping gesture in a Windows Store App written in C# and XAML.

I've a bunch of objects on a page and I want to know when the person swipes their finger over the objects or runs the mouse over them.

I can capture the mouse easily enough by checking for the mouse entering the control. What I've not figured out is the event for doing the same with a finger swipe. I was actually surprised that the mouse event wasn't kicked off with a finger swipe.

Does anyone know the proper event handler for a finger swipe over a control such as a set of buttons?

Thanks!