I have program where you cannot place rectangles over each others, so how can I check if rectangles collide? Is there some kind of function for this or do I have to make my own?
+1
A:
Andy Beaulieu has a good post on the various collision detection methods in Silverlight 3.
Jon Galloway
2009-11-29 07:50:38
The article is a little OTT for the task, the clue is buried in the code. `rect1.Intersect(rect2) != Rect.Empty`
AnthonyWJones
2009-11-29 08:57:48