当前位置: 代码迷 >> .NET Framework >> 请教visual studio 2010里面怎么产生圆形按纽
  详细解决方案

请教visual studio 2010里面怎么产生圆形按纽

热度:9   发布时间:2016-05-02 00:27:44.0
请问visual studio 2010里面如何产生圆形按纽?
好象是在button的paint事件里,但是如何写代码?
多谢。

------解决方案--------------------
参见代码
http://www.codeproject.com/Articles/5082/Round-Button-in-C

http://www.authorcode.com/how-to-make-round-button-in-c/
------解决方案--------------------
设置region
C# code
GraphicsPath path = new GraphicsPath();            path.AddEllipse(0,0,20,20);            button1.Region = new Region(path);
  相关解决方案