tags:

views:

105

answers:

2

hi,

How do I make a button in a round shape rather than the conventional rectangle.

I am using winforms(2.0)

+2  A: 

I need to implement your own Button class based on the default Windows Forms button. Something like this or this. You can use google to find more examples.

Adrian Faciu
+3  A: 

Code project has many articles about these kinds of things, especially the article RoundButton Windows Control - Ever Decreasing Circles might be of interest since it shows you have to do different kinds of round buttons.

ho1