Reputation: 383
I've made some researches and I found that on MSDN
It says that:
Tap
There are two behaviors associated with a tap gesture:
I want to handle only the first behavior (On finger Down), but I didn't find anything. How can I handle this?
Upvotes: 2
Views: 271
Reputation: 89285
You can use ManipulationStarted
event to handle touch start event. Basically, this event occurs when user begins a manipulation on the UIElement
doesn't matter what the gesture is :
private void MyControl_ManipulationStarted(object sender,
System.Windows.Input.ManipulationStartedEventArgs e)
{
}
Upvotes: 1
Reputation: 9434
Why don't you try using the MouseLeave
and MouseEnter
events to your control.
So i guess in your case you could use the MouseEnter
event.
Upvotes: 1