MSDN上的这个页面代表了一个使用 HitTest 的示例,该示例在概念上很清楚......但我没有得到的一件事是列表 C# 代码指向作为 hitResultsList。我试图将其声明为 List 为:
List<myShapeClass> hitResultsList = new List<myShapeClass>();
但是,我收到类型转换错误。任何帮助将不胜感激。问题是我应该使用什么样的列表来进行 HitTesting?
代码在这里:
// Respond to the right mouse button down event by setting up a hit test results callback.
private void OnMouseRightButtonDown(object sender, MouseButtonEventArgs e)
{
// Retrieve the coordinate of the mouse position.
Point pt = e.GetPosition((UIElement)sender);
// Clear the contents of the list used for hit test results.
hitResultsList.Clear();
// Set up a callback to receive the hit test result enumeration.
VisualTreeHelper.HitTest(myCanvas, null,
new HitTestResultCallback(MyHitTestResult),
new PointHitTestParameters(pt));
// Perform actions on the hit test results list.
if (hitResultsList.Count > 0)
{
Console.WriteLine("Number of Visuals Hit: " + hitResultsList.Count);
}
}
谢谢。