求助[图形]
谁有手动绘制图形的小例子,能不能分享一个,在这里先谢过了!
//将Target对象外观改为圆形
GraphicsPath gp = new GraphicsPath() ;
gp.AddEllipse(0, 0, 25, 25) ;
Region r = new Region(gp) ;
PictureBox TmpSender = (PictureBox)sender ;
TmpSender.Region = r ;
主要是用GraphicsPath类,