标签: c# wpf pathgeometry
我正在使用WPF在PathGeometry中绘制两个形状,然后使用以下方法将它们相减:
WPF
PathGeometry
var xc = new CombinedGeometry(GeometryCombineMode.Exclude, myPathGeometry, myPathGeometry2);
如何(以编程方式)获得新形状的点?因为现在我只在屏幕上显示它。