也就是说,我将它按住在一页上,开始转换到新页面,然后在那个新页面上我想补一下。我尝试使用 PhoneApplicationFrame ManipulationStarted/ManipulationCompleted 事件,但它没有帮助。ManipulationStarted 在第一页上触发,但 ManipulationCompleted 从未在新页面上触发,尽管我继续按住手指。
问问题
76 次
1 回答
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:
}
}
于 2013-08-27T13:37:42.703 回答