c# 圆形按钮制作——Region属性

c# 圆形按钮制作——Region属性
        不用重新Button,只通过更改Button的Region属性即可造出圆形按钮
        System.Drawing.Drawing2D.GraphicsPath path = new System.Drawing.Drawing2D.GraphicsPath();
         path.AddEllipse(this.btn_circle.ClientRectangle);
         this.btn_circle.Region = new Region(path);

你可能感兴趣的:(c# 圆形按钮制作——Region属性)