Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Visual Studio 2012 中使用 C# 和 XAML,并编写了一个“Windows 应用商店”应用程序。我正在寻找合适的框架来捕获和跟踪触摸输入。特别是,当用户在屏幕上画线时,我希望通过随时间捕获用户手指的位置来跟踪这些轨迹。例如,每半秒左右找到 (x,y) 位置。我还需要找出用户何时执行“touch down”事件以及用户何时执行“touch up”事件。
在这种情况下,我不需要多点触控。
我应该使用哪个框架来实现这些要求?
谢谢。
您可以使用同时支持鼠标和触摸的指针事件
PointerPressed and PointerReleased Events
您可以在此处查看更多信息: 快速入门:触摸输入