Download An Image From A URL In background in C# WPF

THT
Newbie Member
25Oct2010,12:48   #1
THT's Avatar
Hi, I would like to download images in the background from an URL. I currently had a program which is downloading an image from a URL. However the application i created will "freeze" until all the image had be downloaded.

Hence, I am looking for a way to download images from an URL in the background. So i would be able to continue to use the program while it download.

I am new to C# (WPF) and I am still learning. Hope you guys can give me some suggestion or links for references. Thank you


Thank you very much!
Janet
Go4Expert Member
26Oct2010,01:15   #2
dotNet Zombie's Avatar
to do that, just create a nother thread to fire the method that is downloading the Images.

Code:
Thread firstThread = new Thread( new ThreadStart( MethodA) );
Code:
 public void MethodA()
      {
         // Do Nothing
      }
THT like this
THT
Newbie Member
27Oct2010,14:04   #3
THT's Avatar
Hi dotNet Zombie,

Thank you for the prompt reply. I am trying out the code Will let u know if it is working.

Regards
THT
THT
Newbie Member
27Oct2010,15:26   #4
THT's Avatar
Hi, it is able to work thank you very much!!