将bmp文件加载到图片框

时间:2013-12-13 05:40:42

标签: c# image picturebox

我正在使用picturebox在播放bmp文件时显示wav图片。我的问题是,当我的应用程序被其他计算机使用时,我无法访问图像文件。我的代码如下所示:

        string chosen_File = "nowplaying.bmp";
        string path = Directory.GetCurrentDirectory();
        pictureBox1.Image = Image.FromFile(chosen_File);

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

使用您的程序打包图像,并使chosen_File参考

Application.StartUpPath + "\\your.jpg";