9

我正在尝试在应用程序设置中存储自定义对象的集合。

这个相关问题的一些帮助下,这是我目前拥有的:

// implementing ApplicationSettingsBase so this shows up in the Settings designer's 
// browse function
public class PeopleHolder : ApplicationSettingsBase
{
    [UserScopedSetting()]
    [SettingsSerializeAs(System.Configuration.SettingsSerializeAs.Xml)]
    public ObservableCollection<Person> People { get; set; }
}


[Serializable]
public class Person
{
    public String FirstName { get; set; }
}

public MainWindow()
{
    InitializeComponent();

    // AllPeople is always null, not persisting
    if (Properties.Settings.Default.AllPeople == null)
    {
        Properties.Settings.Default.AllPeople = new PeopleHolder()
            {
                People = new ObservableCollection<Person> 
                    { 
                        new Person() { FirstName = "bob" },
                        new Person() { FirstName = "sue" },
                        new Person() { FirstName = "bill" }
                    }
            };
        Properties.Settings.Default.Save();
    }
    else
    {
        MessageBox.Show(Properties.Settings.Default.AllPeople.People.Count.ToString());
    }
}

在 Settings.Settings 设计器中,我通过浏览器按钮添加了 PeopleHolder 类型的属性,并将范围设置为“用户”。Save() 方法似乎成功完成,没有错误消息,但每次我重新启动应用程序设置都没有持久化。

虽然上面的代码中没有显示,但我可以保留字符串,而不是我的自定义集合(我注意到在其他类似的问题中,有时版本号可能会出现问题,这会阻止在调试时保存设置,所以我想统治作为可能的罪魁祸首。)

有任何想法吗?我确信有一种非常简单的方法可以做到这一点,我只是想念:)。

谢谢你的帮助!

4

2 回答 2

10

由于这个问题,我想通了!

正如该问题中所建议的,我将其添加到 Settings.Designer.cs:

    [global::System.Configuration.UserScopedSettingAttribute()]
    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    public ObservableCollection<Person> AllPeople
    {
        get
        {
            return ((ObservableCollection<Person>)(this["AllPeople"]));
        }
        set
        {
            this["AllPeople"] = value;
        }
    }

然后我只需要以下代码:

[Serializable]
public class Person
{
    public String FirstName { get; set; }
}

public MainWindow()
{
    InitializeComponent();

    // this now works!!
    if (Properties.Settings.Default.AllPeople == null)
    {
        Properties.Settings.Default.AllPeople = new ObservableCollection<Person> 
        { 
            new Person() { FirstName = "bob" },
            new Person() { FirstName = "sue" },
            new Person() { FirstName = "bill" }
        };
        Properties.Settings.Default.Save();
    }
    else
    {
        MessageBox.Show(Properties.Settings.Default.AllPeople.People.Count.ToString());
    }
}
于 2011-10-07T00:54:31.003 回答
3

如果您将其添加ObservableCollection<People>到您自己的代码中,但指定了“Properties”命名空间,则可以在不更改 settings.Designer.cs 的情况下进行此更改:

namespace MyApplication.Properties
{  
    public sealed partial class Settings
    {
        [global::System.Configuration.UserScopedSettingAttribute()]
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
        public ObservableCollection<Person> AllPeople
        {
            get
            {
                return ((ObservableCollection<Person>)(this["AllPeople"]));
            }
            set
            {
                this["AllPeople"] = value;
            }
        }
    }
}

请注意,我将Settings课程 public的可访问性更改为. (我可能不需要这样做)。

我在整个解决方案/答案中看到的唯一缺点是您不再能够使用 Project -> Properties 对话框更改应用程序配置设置。这样做会通过将您的设置转换为字符串并破坏您的 XML 标记来严重破坏您的新设置。

global::System.Configuration.UserScopedSettingAttribute()]因为我想使用单个系统范围的配置文件而不是用户特定的 文件,所以我还将[global::System.Configuration.ApplicationScopedSetting()]. 我把set访问者留在了课堂上,但我知道它实际上并没有保存。

感谢你的回答!它使我的代码更干净,更易于管理。

于 2013-03-06T19:56:41.973 回答