unload picture

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Hrvoje Voda

    #1

    unload picture

    How to unload(clear) picture from picturebox?

    Hrcko


  • Mark R. Dawson

    #2
    RE: unload picture

    Hi Hrvoje,
    set the image property to null, then call Refresh if needed.

    Mark Dawson



    "Hrvoje Voda" wrote:
    [color=blue]
    > How to unload(clear) picture from picturebox?
    >
    > Hrcko
    >
    >
    >[/color]

    Comment

    • dotnetchic

      #3
      Re: unload picture

      Set the image to null and repaint.

      PictureBox pictureBox;

      pictureBox.Imag e = null;
      // assuming the picturebox is embedded in this form
      this.Invalidate ;
      this.Update

      Comment

      Working...