photoFile是我定义的一个存储文件全路径的一个数组
photoNames是我定义的一个存储文件名的集合
我把图片放在bin\Debug\photo这个文件夹下了
代码如下:
Random r = new Random();
int i = r.Next(0, photoFile.Length);
pictureBox1.Image = Image.FromFile(Application.StartupPath + "\\photo\\"+photoNames[nub]);
我写在timer组件里面,结果更换了几张图片之后报错,提示内存不足
求大虾指点
Random r = new Random();
int i = r.Next(0, photoFile.Length);
pictureBox1.Image = Image.FromFile(Application.StartupPath + "\\photo\\" + photoNames[nub]);
pictureBox1.Dispose();