Search code examples
c#winformspicturebox

How to refresh PictureBox


I've little question to ask.

Let's say I've written an ellipse on pictureBox, then clicked a button. I want pictureBox to refresh itself.

I've tried PictureBox.Invalidate(), but could'nt made it. My best regards...


Solution

  • Try the method PictureBox.Refresh() (inherited from Control).