public class CtrlRoundPictureBox : PictureBox
{
protected override void OnCreateControl()
{
GraphicsPath gp = new GraphicsPath();
gp.AddEllipse(this.ClientRectangle);
Region region = new Region(gp);
this.Region = region;
gp = null;
region = null;
base.OnCreateControl();
}
}
C#自定义圆形PictureBox控件
最新推荐文章于 2025-05-18 12:22:35 发布