Private Sub GetViewAtXY(X As Float, Y As Float) As Object
For Each v As View In pnlContent.GetAllViewsRecursive
If v Is ListView Then
If X >= v.Left And X <= v.Left + v.Width And Y >= v.Top And Y <= v.Top + v.Height Then 'this line is 469
Return v
End If
End If
Next
Return Null
End Sub