- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我正在努力处理的代码:
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditorPane));
this.editorControl = new EditorControl();
resources.ApplyResources(this.editorControl, "editorControl", CultureInfo.CurrentUICulture);
当代码执行时,它会抛出“System.Resources.MissingManifestResourceException”,所有错误消息都在下方。
An exception of type 'System.Resources.MissingManifestResourceException' occurred in mscorlib.dll but was not handled in user code
Additional information: Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "Editor.EditorPane.resources" was correctly embedded or linked into assembly "Editor" at compile time, or that all the satellite assemblies required are loadable and fully signed.
最佳答案
对我来说,问题不在于任何内部类定义。相反,问题根源在项目文件中,我花了很长时间才找到。
这是我在项目文件中找到的:
<EmbeddedResource Include="Main.resx" />
这是必须的:
<EmbeddedResource Include="Main.resx">
<DependentUpon>Main.pas</DependentUpon>
</EmbeddedResource>
如果这里没有列出这个依赖项(我必须强调,我没有自己删除它 - 它是由 MS Visual Studio 在某个阶段完成的),编译例程中没有正确包含必要的资源文件。
我希望这会有所帮助(并让其他人省去一些麻烦)!
关于c# - Resources.ApplyResources 上的 System.Resources.MissingManifestResourceException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36273535/
在我的客户端遇到一些性能问题后,我们决定尝试使用一些性能分析器来找出瓶颈或识别代码中有问题的部分。当然,正如许多性能调查一样,问题来自各种各样的事情,但我发现我的用户控件的 ComponentReso
在 WinForms 应用程序中,Panel 用作占位符以显示单个用户控件作为导航策略:无论何时用户希望导航到给定区域,都会添加相应的用户控件到面板。简化: contentPanel.Controls
这是我正在努力处理的代码: System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.C
我是一名优秀的程序员,十分优秀!