问题描述
大家好。
我使用VS 2013,我制作了两个表格。我在第一个表单上添加了一个按钮,并添加了代码以切换到其他表单。代码如下:
this-> Hide();
登录页面^ option = gcnew登录页面();
选项 - >显示();
运行后,单击按钮,抛出异常说:
mscorlib.dll中发生未处理的"System.Resources.MissingManifestResourceException"类型异常
其他信息:找不到适合指定文化或中性文化的资源。 确保"Project.Loginpage.resources"被正确嵌入或链接到程序集"项目"中在编译
时,或者所有所需的附属程序集都是可加载和完全签名的。
请帮助我,我请求。我无法在互联网上的任何地方找到一个有效的解决方案。
Hello all.
I use VS 2013 and i made two forms. I added a button on first form and added code to switch to other from. The code is as follows:
this->Hide();
Loginpage^ option = gcnew Loginpage();
option->Show();
After i run it, click on the button, the exception is thrown saying:
An unhandled exception of type 'System.Resources.MissingManifestResourceException' occurred in mscorlib.dll
Additional information: Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "Project.Loginpage.resources" was correctly embedded or linked into assembly "Project" at compile time, or that all the satellite assemblies required are loadable and fully signed.
Please help me I request. I can not find a single effective solution anywhere on the internet.
这篇关于System.Resources.MissingManifestResourceException,而我想从一种形式切换到另一种形式。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!