不用重新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);
posted on 2008-06-15 13:49
天書 閱讀(6055)
評論(3) 編輯 收藏 引用