picturebox and imagelist in C#
C#
3
Posts
2
Posters
0
Views
1
Watching
-
Hi, I create an ImageList with some BMP file and create a PictureBox. I would like to know how can I do for selecting an image from my list and put it on the Picturebox. Best Regrads youssef
pictureBox1.Image = imageList1.Images[3]; // Asign the 4th image
This posting is provided "AS IS" with no warranties, and confers no rights. Software Design Engineer Developer Division Sustained Engineering Microsoft [My Articles] [My Blog]
-
pictureBox1.Image = imageList1.Images[3]; // Asign the 4th image
This posting is provided "AS IS" with no warranties, and confers no rights. Software Design Engineer Developer Division Sustained Engineering Microsoft [My Articles] [My Blog]