5,381 questions
Hello,
Welcome to Microsoft Q&A!
You can detect the touch in OnTouchEffectAction
method in its parent class InteractivePage
.
The method is triggering during the touch process .
protected void OnTouchEffectAction(object sender, TouchActionEventArgs args)
{
if(args.Type == TouchActionType.Released)
{
}
}
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.