我想用用户触摸图像放置在该位置的图像绘制路径,并假设用户移动手指图像放置在这些位置。通常在绘图应用程序中,用户在触摸时画一条线,但我想在触摸事件中绘制图像,如果有人在 Windows Phone 开发中遇到此类问题,请给我任何建议。非常感谢
问问题
371 次
1 回答
0
我找到了一个比我刚刚发布的更好的例子。
直接从 MS 瞄准具
TouchCollection touchCollection = TouchPanel.GetState();
foreach (TouchLocation tl in touchCollection)
{
if ((tl.State == TouchLocationState.Pressed)
|| (tl.State == TouchLocationState.Moved))
{
//Here is where you add your logic to add images
}
}
于 2013-02-16T21:24:02.817 回答