1

In a Wpf Project, I have a path and i want to know that is the path contains this point ? how i can determine it?

1 Answers1

2

Use the Geometry.FillContains method:

bool inside = path.Data.FillContains(point);
Clemens
  • 123,504
  • 12
  • 155
  • 268