Hi,
So far I have code that will start drawing a line when u do your first click until u release it.(which works fine)
What I would like to do next is to, detect for each button while drawing the line if the line is going over the buttons
Private Sub MainPage_PointerMoved(sender As Object, e As PointerRoutedEventArgs) Handles Me.PointerMoved
For Each c As Button In g1.Children.OfType(Of Button)()
'I think the code shud go in here
Next
End Sub
But i'm not sure what will be the method to that? Any suggesstion?
Thank You