标签: c# wpf
我在WPF应用程序中有两个矩形。如何检查矩形是否相交?
答案 0 :(得分:7)
if (rectangle1.IntersectsWith(rectangle2)) { // Do something }
Rect.IntersectWith
答案 1 :(得分:4)
Rect.IntersectsWith可能正是您要找的?
Rect.IntersectsWith
答案 2 :(得分:0)
尝试IntersectsWith方法。
IntersectsWith