代码之家  ›  专栏  ›  技术社区  ›  Kirsten

无法解析资源项SvgImage

  •  0
  • Kirsten  · 技术社区  · 3 年前

    我正在努力追踪DevExpress中可能发生的内存泄漏。XtraEditors。SvgImageBox

    所以我上了一节课

    public class MySvgImageBox : SvgImageBox
    {
     
        protected override void Dispose(bool disposing)
        {
            base.Dispose(disposing);
        }
    }
    

    并将我的代码更改为使用此类型

    public class MyGalleryCaptionControl : XtraUserControl
    {
     
        internal MySvgImageBox svgImageBoxSelected;
        //etc
    

    然而资源。GetObject现在指示InitializeComponent()代码中存在问题

    screen snapshot

    项目正在构建,但在运行时我收到以下错误

    系统资源。MissingManifestResourceException:“找不到任何 适合特定文化或中立的资源 文化确保 “MyAppModule.Win.Features.Jama.Editors。MyGalleryControl.MyGalleryCaptionControl.resources” 已正确嵌入或链接到位于的程序集“MyApp.Module.Win”中 编译时,或者所需的所有附属程序集 可加载且完全签名。”

    我确实看到MyGalleryControl的.resx文件

    1 回复  |  直到 3 年前
        1
  •  0
  •   Kirsten    3 年前

    当我将MySvgImageBox.cs移动到它自己的文件时,问题消失了