每当我尝试生成或打开窗体设计器文件时,我总是收到错误CS0400: The type or namespace name 'Properties' could not be found in the global namespace (are you missing an assembly reference?)
资源文件具有正确的命名空间。属性文件夹确实存在。Visual Studio在尝试使用属性文件时找不到任何错误,除非项目运行时引发异常,因为它在属性文件中找不到存在的图像。
属性文件:https://github.com/Soniczac7/Download-Manager/blob/master/Properties/Resources.resx
示例设计器文件:https://github.com/Soniczac7/Download-Manager/blob/master/WebViewWindow.Designer.cs
任何帮助都将不胜感激。
1条答案
按热度按时间a1o7rhls1#
我通过将代码从
global::Properties.Resources
更改为global::DownloadManager.Properties.Resources
修复了全局命名空间问题,为了修复triyign加载资源时出现的异常,我必须将字符串“Properties.Resources”更改为“DownloadManager.Properties.Resources”。之前:
之后:
之后,所有资源异常都停止。