Hi Dear,
I want change shape of button to below shape:

note:i dont use image button,
I want a rounds of button was circle.
Thanks for your Help,
Hi Dear,
I want change shape of button to below shape:

note:i dont use image button,
I want a rounds of button was circle.
Thanks for your Help,
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
FroglegPosted Apr 3, 2012, 5:46 AM
button1.Width = 45;
button1.Height = 45;
GraphicsPath p = new GraphicsPath();
p.AddEllipse(4, 4, button1.Width - 8, button1.Height -8);
button1.Region = new Region(p);
don't forget
using System.Drawing.Drawing2D;