Hi
How I can Load Picture to PictureBox in Windows mobile ?
there isn't somthing like "PictureBox1.Image.Load (......." ???
thank's
Hi
How I can Load Picture to PictureBox in Windows mobile ?
there isn't somthing like "PictureBox1.Image.Load (......." ???
thank's
You need to create the image object, then assign it to the PictureBox:
Image myImage = new Bitmap(...);
PixtureBox1.Image = myImage;