Quote Originally Posted by jeffow
In reply to the question raised by Joacim - yes, the shape will always be solid filled, so I would like to hear your idea.
In that case you could simply check the the color of the point the mouse is over in the MouseMove event.
VB Code:
  1. If UserControl.Point(X, Y) = Shape1.FillColor Then
  2.     'do whatever
  3. End If