Hello,
Welcome to our Microsoft Q&A platform!
In touch screen interactions, you can try to use the Tapped
event, which represents a finger tapping the screen.
In the PointerPressed
event, you can filter out finger triggers this way:
private void Something_PointerPressed(object sender, PointerRoutedEventArgs e)
{
if (e.Pointer.PointerDeviceType == PointerDeviceType.Mouse)
{
// Do mouse things...
}
}
Thanks.