I have xaml
that I apply a rectangle over several images, in order to be able to manipulate them after a holding in them. The problem is that if I put IsHitTestVisible
in state false
in the rectangle and when one of the images fires Holding
, I update the status of IsHitTestVisible
to true
, rectangle in triggers events, such as ManipulationDelta
, you need to remove your finger from the touchscreen and put it back to trigger the events in my rectangle.
What I have to do is similar to this SOen question , although there is no answer, they mention reflection techniques and the use of routed events
, however it did not solve my problem because I did not know how to use it correctly or because it really was not the right solution. Could you give me an example of how to solve this problem?