我在Form中放了一个pictureBox控件,在当前目录中放了几张位图,比如smile.bmp
Bitmap picture=new Bitmap("smile.bmp");
pictureBox1.Image=(Image)picture;
我用fileOpenDialog选择图片地址可以正常显示,但用相对路径则在运行时显示读取数据出错,这是什么原因呢?