本文介绍了mscorlib.dll中的'System.Resources.MissingManifestResourceException'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好.
我有一个问题.
当我通过向导在Visual Studio 2010 Professional中创建新的Form项目时
我在这样的控件中使用一些图像:

Hello to everybody.
I have a question.
When I create a new Form project in Visual Studio 2010 Professional by Wizard
and I use some Image in controls like this:

this.button1.Image = global::WindowsFormsApplication1.Properties.Resources.Image1;


当我启动项目时,应用程序引发了异常

System.Resources.MissingManifestResourceException'' in mscorlib.dll

在"Resources.Designer.cs"中


when I launch the project the application thrown an Exception

System.Resources.MissingManifestResourceException'' in mscorlib.dll

in "Resources.Designer.cs"

internal static System.Drawing.Bitmap Image1 {
    get {
        object obj = ResourceManager.GetObject("Image1", resourceCulture);
        return ((System.Drawing.Bitmap)(obj));
    }
}


有人可以帮我吗?
在建议中感谢您


Can someone help me ??
Thankyou in advice

推荐答案



这篇关于mscorlib.dll中的'System.Resources.MissingManifestResourceException'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 16:49