我一直在尝试使用以下代码使用 C# 将图像从我的资源加载到 Visual Studio 2012 上的图片框。
pictureBox1.Load(Properties.Resources.Desert);
而且我一直收到以下错误。
- 匹配的最佳重载方法
System.Windows.Forms.PictureBox.Load(string)
有一些无效参数 - 论点 1:不能从
System.Drawing.Bitmap
to转换string
我一直在尝试使用以下代码使用 C# 将图像从我的资源加载到 Visual Studio 2012 上的图片框。
pictureBox1.Load(Properties.Resources.Desert);
而且我一直收到以下错误。
System.Windows.Forms.PictureBox.Load(string)
有一些无效参数System.Drawing.Bitmap
to转换string