Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
How can I intersect two (.NET) GraphicsPath objects?
您是否试图让两个不同路径包围的区域?那是一条Region,而不是一条路径:
Region
var rgn1 = new Region(path1); var intersection = rgn1.Intersect(path2); rgn1.Dispose();
如果这不是您的意思,您将不得不提供更多信息。