问题描述
我做了一个智能设备项目,目的是通过一按钮在图片窗口显示可以调用的图片。程序如下:usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;namespacetest{publicpartialclassForm1:Form{publicForm1(){InitializeComponent();}privatevoidbutton1_Click(objectsender,EventArgse){pictureBox1.Image=newBitmap("myjpg.jpg");}}}可以生成解决放案,也可进入模拟器调试,但在模拟其环境中调试时一操作按钮button1就出错。在System.IO.FileNotFoundException中第一次偶然出现的“mscorlib.dll”类型的异常在System.IO.FileNotFoundException中第一次偶然出现的“mscorlib.dll”类型的异常在System.UnauthorizedAccessException中第一次偶然出现的“mscorlib.dll”类型的异常在System.IO.IOException中第一次偶然出现的“mscorlib.dll”类型的异常在System.IO.FileNotFoundException中第一次偶然出现的“mscorlib.dll”类型的异常未处理的“System.IO.FileNotFoundException”类型的异常出现在mscorlib.dll中。其他信息:无法显示错误消息,原因是无法找到包含此错误消息的可选资源程序集。我想可能是模拟环境和实际的设备一样,是不认PC中的路径的,所以找不到图片文件。由于知识浅薄,无法解决。望高人指点。