我正在制作一个程序,该程序通过 vb.net 在 WPF 中的图像控件中的图片幻灯片放映之间进行星形擦除过渡
现在我正在图像控件中以星形绘制图片
我在表格中完成了这是在表格上绘制多边形的代码
'here i draw the star points
MyPolygon.Points = myPointCollection
'and here i draw the the star with the image from imagebrush
MyPolygon.Fill = imagebrush
但我不知道如何在图像控件中绘制它
我可以通过使用源属性将整个图片放在图像控件中
但那是当然不会把它画成明星
有没有办法在图像控件中绘制多边形?