我是C#和.Net的新手,来自一个C ++世界。我正在通过为自己创建一个小应用程序来学习C#WPF。
目前我需要创建一个集合用户设置。之后我希望能够将此集合绑定到列表框,我决定使用ObservableCollection。
到目前为止,经过长时间的搜索,我得到的是:
public class ProfileStorage : ApplicationSettingsBase
{
public ProfileStorage()
{
this.UserProfiles = new ObservableCollection<UserProfile>();
}
[UserScopedSetting()]
[SettingsSerializeAs(System.Configuration.SettingsSerializeAs.Binary)]
[DefaultSettingValue("")]
public ObservableCollection<UserProfile> UserProfiles
{
get
{
return (ObservableCollection<UserProfile>)this["UserProfiles"];
}
set
{
this["UserProfiles"] = value;
}
}
}
[Serializable]
public class UserProfile
{
public String Name { get; set; }
}
我甚至可以在设置设计器中浏览它并创建名为“ProfileStorage”的设置。这是在settings.designer.cs中自动创建的代码:
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::tick_time.ProfileStorage ProfileStorage {
get {
return ((global::tick_time.ProfileStorage)(this["ProfileStorage"]));
}
set {
this["ProfileStorage"] = value;
}
}
问题是我无法保存此设置!我使用以下代码来检查。
if (null == Properties.Settings.Default.ProfileStorage)
{
Properties.Settings.Default.ProfileStorage = new ProfileStorage()
{
UserProfiles = new ObservableCollection<UserProfile>
{
new UserProfile{Name = "1"},
new UserProfile{Name = "2"}
}
};
Properties.Settings.Default.Save();
}
}
ProfileStorage始终为空。
所以这是我的问题。经过一番搜索,我发现在Stackowerflow上的一篇文章中描述了hack。我需要手动更改settings.Designer.cs:
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ObservableCollection<UserProfile> Profiles
{
get
{
return ((ObservableCollection<UserProfile>)(this["Profiles"]));
}
set
{
this["Profiles"] = value;
}
}
这样可以正确保存和恢复设置“配置文件”。
但我不喜欢这个解决方案的原因:
所以我猜问题就是序列化的某个地方。但ObservableCollection可以完美地序列化,正如我们在示例中所见。
P.S。我也尝试在设置Designer中浏览System.Collections.ObjectModel.ObservableCollection<tick_time.UserProfile>
(tick_time是我的项目名称空间的名称),但我没有运气。
所以,我将不胜感激任何建议!
答案 0 :(得分:1)
经过一番搜索后,我能够提出更少的黑客攻击解决方案。 我使用了http://social.msdn.microsoft.com/Forums/en-US/netfxbcl/thread/6f0a2b13-88a9-4fd8-b0fe-874944321e4a/中的想法(参见最后一条评论)。
这个想法是修改不是settings.Designer.cs,而是专门创建了另一个文件。自动生成的Settings
是部分的,因此我们可以在其他文件中完成它的定义。所以我只是制作专用文件来包含手动添加的属性!
它实际上有效。
所以现在我会把它作为答案。