pictureBox1.Image = Image.FromFile("C:\\Documents and Settings\\Administrator\\桌面\\turtlr.gif");
这句程序老是出异常...
但是,桌面上却是有这个图片,而且,我为了测试,还专门用了相对路径,但是就是死连连不上...
pictureBox1.Image = Image.FromFile("C:\\Documents and Settings\\Administrator\\桌面\\turtlr.gif");
这句程序老是出异常...
但是,桌面上却是有这个图片,而且,我为了测试,还专门用了相对路径,但是就是死连连不上...
你要写路径的话,就要用另一个属性。。。
pictureBox1.ImageLocation = "C:\\Documents and Settings\\Administrator\\桌面\\turtlr.gif";
用这个试试。。。