I assume you want to do something like this
Touch a user control then
you want to handle an event which fire as soon as you are not touch the user control
First event come in mind is using MouseLeftButtonUp
the issue with this event is, it’s not fired once your finger go outside the user control
the solution is to use MouseLeave event instead,
it will fire as u expect