所以我只需点击下拉列表并浏览即可将NameValueCollection
添加到Properties.Settings
。
但是现在当我构建应用程序时,由于某种原因,这个属性没有添加到.config文件中。
查看Settings.Designer.cs
文件,我猜这个部分也应该针对'NameValueCollection`的类型进行修改:
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Collections.Specialized.NameValueCollection strColExcelFamNames {
get {
return ((global::System.Collections.Specialized.NameValueCollection)(this["strCol"]));
}
set {
this["strCol"] = value;
}
}
所以我的问题是,如何正确添加NameValueCollection
以便在Properties.Settings
中使用?