在WPF4 MultiTouch中,UIElement.ManipulationDelta事件通过ManipulationDeltaEventArgs.Manipulators属性报告触摸点。
// WPF4
//获取表示操作的触摸接触的对象集合 public IEnumerable Manipulators {get; }
不幸的是,UWP / Windows 10 Universal中没有这样的属性。 ManipulationDeltaRoutedEventArgs仅包含累积和增量操作(变换),但不包含实际触摸点。
如何在UIElement.ManipulationDelta活动期间访问原始触摸点?