也就是说,我把它放在一个页面上,转换到新页面开始,在那个新页面上,我想要修补一下。我曾尝试使用PhoneApplicationFrame ManipulationStarted / ManipulationCompleted事件,但它没有帮助。 ManipulationStarted在第一页上触发,但ManipulationCompleted永远不会在新页面上触发,但我继续用手指向下。
答案 0 :(得分:1)
你可以尝试类似的东西
Touch.FrameReported += TouchFrameReported;
//在构造函数
void TouchFrameReported(object sender, TouchFrameEventArgs e)
{
var tp = e.GetPrimaryTouchPoint(Control); // Control you want to manupulate
switch (tp.Action)
{
case TouchAction.Move:
case TouchAction.Up:
case TouchAction.Down:
}
}