Categories
How to round an image in a picturebox?
How to round an image in a picturebox ?
Answer the question
In order to leave comments, you need to log in
System.Drawing.Drawing2D.GraphicsPath gp = new System.Drawing.Drawing2D.GraphicsPath(); gp.AddEllipse(0, 0, pictureBox1.Width - 3, pictureBox1.Height - 3); Region rg = new Region(gp); pictureBox1.Region = rg; //pictureBox1 - ваш бокс
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question