winform重写控件——圆框图片

2018-03-22  本文已影响0人  颜渊若水
public class MyPic:PictureBox
        {
            protected override void OnCreateControl()
            {
                GraphicsPath gp = new GraphicsPath();
                gp.AddEllipse(this.ClientRectangle);
                Region region = new Region(gp);
                this.Region = region;
                gp.Dispose();
                region.Dispose();
                base.OnCreateControl();
            }
          
        }
上一篇 下一篇

猜你喜欢

热点阅读