T
Tomppa
Using CE 5.0, CF 2.0, C#
How do I do the equevelant in the CF?
Stream ImageStream = new WebClient().OpenRead(URL);
System.Drawing.Image img = System.Drawing.Image.FromStream(ImageStream);
picCover.Width = img.Width;
picCover.Height = img.Height;
picCover.Image = img;
Thanks
How do I do the equevelant in the CF?
Stream ImageStream = new WebClient().OpenRead(URL);
System.Drawing.Image img = System.Drawing.Image.FromStream(ImageStream);
picCover.Width = img.Width;
picCover.Height = img.Height;
picCover.Image = img;
Thanks