注册 登录
编程论坛 VB.NET论坛

求 帮助 vs2010 imagelist如何与picturebox连接

求学菜鸟 发布于 2012-03-11 16:47, 786 次点击
我想用picturebox显示imagelist中的图片,可是picturebox中没有imagelist属性  使用PictureBox1.image = imagelist1.images[0]也不行  我 该怎么 办 啊
1 回复
#2
River73122012-03-15 17:14
PictureBox1.Image = ImageList1.Images.Item(0)
1