【问题标题】:Dictionary properties are always null despite dictionaries being instantiated尽管实例化了字典,但字典属性始终为空
【发布时间】:2013-05-20 23:13:31
【问题描述】:

首先,我有两个名为 ComponentsWindowsFormsApplication5 的项目作为我的解决方案的一部分(还有更多,但这些无关紧要)。我指的字典在Components,定义如下,连同它们的属性-:

 Dictionary<int, ButtonBase> RespMCQ, DispMCQ; //<Question Number, Checkbox/Radiobutton>
 Dictionary<int, List<ButtonBase>> RespMSQ, DispMSQ;
 public Dictionary<int, ButtonBase> MCQResp
 {
     get
     {
         return RespMCQ;
     }
     set
     {
         RespMCQ = value;
     }
 }
 public Dictionary<int, List<ButtonBase>> MSQResponse
 {
     get
     {
         return RespMSQ;
     }
     set
     {
         RespMSQ = value;
     }
 }
 public Dictionary<int, ButtonBase> MCQDisplay
 {
     get
     {
         return DispMCQ;
     }
     set
     {
         DispMCQ = value;
     }
 }
 public Dictionary<int, List<ButtonBase>> MSQDisplay
 {
     get
     {
         return DispMSQ;
     }
     set
     {
         DispMSQ = value;
     }
 }

字典在QuestionDisplay.cs 的构造函数中实例化,该构造函数是Components 项目的一部分(这是它们所在的位置)。如下图-:

public QuestionDisplay()
{
    InitializeComponent();
    RespMCQ = new Dictionary<int, ButtonBase>();
    DispMCQ = new Dictionary<int, ButtonBase>();
    RespMSQ = new Dictionary<int, List<ButtonBase>>();
    DispMSQ = new Dictionary<int, List<ButtonBase>>();
    ....
}

WindowsFormsApplication5Form1.cs 中(我没有选择这个名字,如果听起来平淡,请原谅我),我正在使用我提到的属性。没有命名空间问题,编译正常进行。

Form_LoadForm1 期间,然而,当我提到这些属性时,它们会抛出一个NullReferenceException 说-:

Object reference not set to an instance of an object.

这些属性的第一次出现在一个名为WorkFlowPanel(string S, QuestionContainerState obj)的方法中,该方法在表单加载时被调用-:

 if (QuesTypes[i].Equals("MCQ"))
 {
    string text = "";
    for (int ansCount = 0; ansCount < questions[i].Options.Count(); ansCount++)
    {
        if (Convert.ToInt32(K.Key).Equals(ansCount + 1))
        {
            text = questions[i].Options[ansCount];
            break;
        }
    }
    questionDisplay1.MCQResp.Add(i, new CustomRadio { optionId = Convert.ToInt32(K.Key), Checked = true, Text = text }); //Using anonymous class
 }
 else if (QuesTypes[i].Equals("MSQ") || QuesTypes[i].Equals("Linked"))
 {
     var storeoptions = K.Key.Split(':');
     questionDisplay1.MSQResponse.Add(i, new List<ButtonBase>());
     for (int s = 0; s < storeoptions.Count(); s++)
     {
         questionDisplay1.MSQResponse[i].Add(new CustomChecks { optionId = Convert.ToInt32(storeoptions[s]), Checked = true, Text = questions[i].Options[Convert.ToInt32(storeoptions[s])] });
     }
 }

令我惊讶的是,在调试时,我发现尽管字典被实例化,但属性始终为空。现在这个问题有一段历史,我将不得不深入研究,以提供上下文。

我早些时候与Form1.resx 中发生的Could not find a type for a name. The type was System.Collections.Dictionary... 错误作斗争(我不记得整个错误)。显然字典属性被序列化成二进制格式,并在 resx 文件中编码为 base64,如下 -:

<data name="MCQDisplay" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
        AAEAAAD/////AQAAAAAAAAAEAQAA....
</value>
<data name="MSQDisplay" .....>
....
....

我遵循了在 Stackoverflow 上找到的解决方案,该解决方案告诉我将代码复制回旧版本。这是我从那时起一直在应用的修复程序。我发现如果我删除了这些条目(编译器错误要求我这样做),字典属性将始终为空。我觉得这与我目前的情况有关。碰巧在回拷操作期间,resx 文件条目不知何故消失了。

从那时起,它就再也没有抛出过这个编译器错误。我尝试了一切,包括使用ResXResourceWriter 重新生成条目。就好像他们甚至没有被承认,而不是错误,我在运行时被告知字典属性总是空的! IRC 上的一位人士表示,该错误过去常常发生,因为ButtonBase 不可序列化,尽管Dictionary 本身是可序列化的。好吧,我从来没有要求编译器序列化字典。我想知道为什么会这样。

如果有人能帮我解决这个该死的错误,我将不胜感激。我的脑海中也有这个模糊的解决方案,我可以存储类对象,而不是将ButtonBase 子项存储为值,而是存储类对象,这些对象具有反映ButtonBase 子项的文本、optionId 和检查属性的属性。但是,我认为这是最后的手段。

EDIT_1:我不知道这是否相关,但我在 Form1.Designer.cs -:

中找到了这些条目
this.questionDisplay1.MCQDisplay = ((System.Collections.Generic.Dictionary<int, System.Windows.Forms.ButtonBase>)(resources.GetObject("questionDisplay1.MCQDisplay")));
this.questionDisplay1.MCQResp = ((System.Collections.Generic.Dictionary<int, System.Windows.Forms.ButtonBase>)(resources.GetObject("questionDisplay1.MCQResp")));
this.questionDisplay1.MSQDisplay = ((System.Collections.Generic.Dictionary<int, System.Collections.Generic.List<System.Windows.Forms.ButtonBase>>)(resources.GetObject("questionDisplay1.MSQDisplay")));
this.questionDisplay1.MSQResponse = ((System.Collections.Generic.Dictionary<int, System.Collections.Generic.List<System.Windows.Forms.ButtonBase>>)(resources.GetObject("questionDisplay1.MSQResponse")));

我必须删除这些或以某种方式修改它们吗?我觉得这些与马修的回答有某种关系。

EDIT_2:我设法通过应用以下方法解决了这个问题:

  1. Matthew Watson 的非序列化修复 - 以防编译器再次尝试序列化字典属性。
  2. 我注释掉了Form1.Designer.cs中的条目,也就是我上面提到的那些。

我接受 Matthew 的回答,因为我觉得非序列化修复是相关的。

【问题讨论】:

  • 如果您在类组件中显示构造函数的代码,您如何实例化此类的实例以及您如何尝试访问字典,将会有所帮助
  • @Steve:直接添加!

标签: c# winforms dictionary resx


【解决方案1】:

这些属性是公共的还是从FormUserControlControl 派生的类的成员?

如果是这样,表单设计器可能会尝试将属性序列化到表单的 Designer.cs 文件中。 (其实从你说的情况来看,完全是可能。)

要阻止这种情况发生,您可以使用DesignerSerializationVisibilityAttribute 来阻止它,例如:

[
    Browsable(false),
    DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]

public MyType MyPropertyWhichMustNotBeSerialized
{
    get;
    set;
}

你必须编辑掉它已经放在“.Designer.cs”文件中的任何坏东西——添加这个属性可能不会让它自动消失。

如果您没有定期检查是否需要添加此属性,我认为您可能希望通过 all 直接或间接从 Control 派生的任何类中的公共属性,并且必要时添加此属性。


对于空引用的问题; FormLoad() 是否有可能被调用为调用InitialiseComponent() 的副作用?这会导致空引用错误。

为了最安全,您应该为您的属性使用支持字段,而不是自动属性。

然后,不要在构造函数中初始化字段,而是在声明字段的位置初始化它们,如下所示:

private Dictionary<int, ButtonBase>       respMCQ = new Dictionary<int, ButtonBase>();
private Dictionary<int, ButtonBase>       dispMCQ = new Dictionary<int, ButtonBase>();
private Dictionary<int, List<ButtonBase>> respMSQ = new Dictionary<int, List<ButtonBase>>();
private Dictionary<int, List<ButtonBase>> dispMSQ = new Dictionary<int, List<ButtonBase>>();

这样可以保证在调用任何构造函数之前初始化它们。

【讨论】:

  • 属性确实是公开的,但是它们所在的类是派生自UserControl。不过,我仍然会尝试您的修复。将首先清理 resx 文件中存在的条目。
  • @UncleDolan 我也应该说UserControl - 这也受到影响
  • 试过这个,但没有区别。仍在抛出 nullref 异常,它发生在我尝试将条目添加到 questionDisplay1.MSQResponse 的行。
  • @UncleDolan 我怀疑存在不止一个错误,而这只修复了其中一个。
  • 我也开始这么想了。如果我早一点来到这里,出现Form1.resx 编译器错误,这个修复就会奏效……看来我来得太晚了!顺便说一句,它是否也序列化为Designer.cs?我看到它被序列化为Form1.resx
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-02-05
  • 2010-12-10
  • 2015-09-30
  • 1970-01-01
相关资源
最近更新 更多