ApplicationSettingsBase为自定义集合写入空标记

时间:2011-06-10 16:02:53

标签: c# .net wpf serialization application-settings

我已经连续几天打架了这个。我需要存储一组自定义对象作为用户设置的一部分。基于大量的谷歌工作,似乎从ApplicationSettingsBase建立一个偏好类是一种合适的方法。我遇到的问题是,一旦我尝试存储自定义类型的集合,就不会为该属性保存数据。如果我保留基本类型的集合,例如字符串,那么事情就可以了。我有一个单独的概念证明项目,我在过去的一天里一直在努力解决这个问题。

这个项目包含一个带有列表框的WPF窗口和两个按钮,“+”和“ - ”。我有一个Prefs类,有三个属性定义不同类型的集合。在我的窗口代码中,我将列表框绑定到其中一个列表,按钮可以在列表中添加或删除项目。关闭窗口应该将列表的内容保存到当前用户的users.config文件中。重新打开它应该显示列表中保存的内容。

如果我使用List1(ObservableCollection<string>)并单击+按钮几次,则关闭窗口,将数据正确保存到user.config。但是,如果我更改并使用List2(ObservableCollection<Foo>)或List3(FooCollection),我最终会得到一个空值标记。我试图实现ISerializableIXmlSerializable以尝试使其工作而不改变行为。事实上,在带有断点的调试模式下运行会显示集合在调用save方法时包含数据但是从不调用序列化接口方法。

我错过了什么?

更新:我已经改变了我的方法,暂时将数据写入user.config旁边的另一个文件,以便我可以在应用程序的其他部分取得一些进展。但我仍然想知道为什么应用程序设置库无法记录我的收集数据。

以下是所有相关代码,如果有人认为省略的部分很重要,我会将其添加回帖子中。

向每个列表属性添加几个元素后

user.config

<setting name="List1" serializeAs="Xml">
    <value>
        <ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns:xsd="http://www.w3.org/2001/XMLSchema">
            <string>0</string>
            <string>1</string>
            <string>2</string>
        </ArrayOfString>
    </value>
</setting>
<setting name="List2" serializeAs="Xml">
    <value />
</setting>
<setting name="List3" serializeAs="Xml">
    <value />
</setting>

Window XAML

<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition></ColumnDefinition>
        <ColumnDefinition Width="Auto"></ColumnDefinition>
    </Grid.ColumnDefinitions>
    <ListBox Name="l1" Grid.Column="0" Grid.Row="0" ItemsSource="{Binding}"></ListBox>
    <StackPanel Grid.Column="1" Grid.Row="0">
        <Button Name="bP" Margin="5" Padding="5" Click="bP_Click">+</Button>
        <Button Name="bM" Margin="5" Padding="5" Click="bM_Click">-</Button>
    </StackPanel>

</Grid>

Window的背后代码

public partial class Window1 : Window
{
    Prefs Prefs = new Prefs();

    public Window1()
    {
        InitializeComponent();

        //l1.DataContext = Prefs.List1;
        //l1.DataContext = Prefs.List2;
        l1.DataContext = Prefs.List3;
    }

    private void Window_Closed(object sender, EventArgs e)
    {
        Prefs.Save();
    }

    private void bP_Click(object sender, RoutedEventArgs e)
    {
        //Prefs.List1.Add(Prefs.List1.Count.ToString());
        //Prefs.List2.Add(new Foo(Prefs.List2.Count.ToString()));
        Prefs.List3.Add(new Foo(Prefs.List3.Count.ToString()));
    }

    private void bM_Click(object sender, RoutedEventArgs e)
    {
        //Prefs.List1.RemoveAt(Prefs.List1.Count - 1);
        //Prefs.List2.RemoveAt(Prefs.List2.Count - 1);
        Prefs.List3.RemoveAt(Prefs.List3.Count - 1);
    }
}

Prefs class

class Prefs : ApplicationSettingsBase
{
    [UserScopedSettingAttribute()]
    [DefaultSettingValueAttribute(null)]
    public System.Collections.ObjectModel.ObservableCollection<string> List1
    {
        get
        {
            System.Collections.ObjectModel.ObservableCollection<string> Value = this["List1"] as System.Collections.ObjectModel.ObservableCollection<string>;
            if (Value == null)
            {
                Value = new System.Collections.ObjectModel.ObservableCollection<string>();
                this["List1"] = Value;
            }
            return Value;
        }
    }

    [UserScopedSettingAttribute()]
    [DefaultSettingValueAttribute(null)]
    public System.Collections.ObjectModel.ObservableCollection<Foo> List2
    {
        get
        {
            System.Collections.ObjectModel.ObservableCollection<Foo> Value = this["List2"] as System.Collections.ObjectModel.ObservableCollection<Foo>;
            if (Value == null)
            {
                Value = new System.Collections.ObjectModel.ObservableCollection<Foo>();
                this["List2"] = Value;
            }
            return Value;
        }
    }

    [UserScopedSettingAttribute()]
    [DefaultSettingValueAttribute(null)]
    public FooCollection List3
    {
        get
        {
            FooCollection Value = this["List3"] as FooCollection;
            if (Value == null)
            {
                Value = new FooCollection();
                this["List3"] = Value;
            }
            return Value;
        }
    }
}

Foo Class

[Serializable()]
class Foo : System.ComponentModel.INotifyPropertyChanged, ISerializable, IXmlSerializable
{
    private string _Name;
    private const string PropName_Name = "Name";
    public string Name
    {
        get { return this._Name; }
        set
        {
            if (value != this._Name)
            {
                this._Name = value;
                RaisePropertyChanged(Foo.PropName_Name);
            }
        }
    }
    public override string ToString()
    {
        return Name;
    }

    public Foo() { }
    public Foo(string name)
    {
        this._Name = name;
    }

    #region INotifyPropertyChanged Members
/***Omitted for space***/
    #endregion

    #region ISerializable Members
    public Foo(SerializationInfo info, StreamingContext context)
    {
        this._Name = (string)info.GetValue(Foo.PropName_Name, typeof(string));
    }
    public void GetObjectData(SerializationInfo info, StreamingContext context)
    {
        info.AddValue(Foo.PropName_Name, this._Name);
    }
    #endregion

    #region IXmlSerializable Members
    public System.Xml.Schema.XmlSchema GetSchema()
    {
        return null;
    }

    public void ReadXml(System.Xml.XmlReader reader)
    {
        reader.MoveToContent();
        _Name = reader.GetAttribute(Foo.PropName_Name);
        bool Empty = reader.IsEmptyElement;
        reader.ReadStartElement();
        if (!Empty)
        {
            reader.ReadEndElement();
        }
    }

    public void WriteXml(System.Xml.XmlWriter writer)
    {
        writer.WriteAttributeString(Foo.PropName_Name, _Name);
    }
    #endregion
}

和FooCollection类

[Serializable()]
class FooCollection : ICollection<Foo>, System.ComponentModel.INotifyPropertyChanged, INotifyCollectionChanged, ISerializable, IXmlSerializable
{
    List<Foo> Items;
    private const string PropName_Items = "Items";

    public FooCollection()
    {
        Items = new List<Foo>();
    }

    public Foo this[int index]
    {
/***Omitted for space***/
    }

    #region ICollection<Foo> Members
/***Omitted for space***/
    #endregion

    public void RemoveAt(int index)
    {
/***Omitted for space***/
    }

    #region IEnumerable Members
/***Omitted for space***/
    #endregion

    #region INotifyCollectionChanged Members
/***Omitted for space***/
    #endregion

    #region INotifyPropertyChanged Members
/***Omitted for space***/
    #endregion

    #region ISerializable Members
    public FooCollection(SerializationInfo info, StreamingContext context)
    {
        this.Items = (List<Foo>)info.GetValue(FooCollection.PropName_Items, typeof(List<Foo>));
    }
    public void GetObjectData(SerializationInfo info, StreamingContext context)
    {
        info.AddValue(FooCollection.PropName_Items, this.Items);
    }
    #endregion

    #region IXmlSerializable Members
    public System.Xml.Schema.XmlSchema GetSchema()
    {
        return null;
    }

    public void ReadXml(System.Xml.XmlReader reader)
    {
        XmlSerializer FooSerializer = new XmlSerializer(typeof(Foo));

        reader.MoveToContent();
        bool Empty = reader.IsEmptyElement;
        reader.ReadStartElement();
        if (!Empty)
        {
            if (reader.IsStartElement(FooCollection.PropName_Items))
            {
                reader.ReadStartElement();

                while (reader.IsStartElement("Foo"))
                {
                    this.Items.Add((Foo)FooSerializer.Deserialize(reader));
                }

                reader.ReadEndElement();
            }

            reader.ReadEndElement();
        }
    }

    public void WriteXml(System.Xml.XmlWriter writer)
    {
        XmlSerializer FooSerializer = new XmlSerializer(typeof(Foo));

        writer.WriteStartElement(FooCollection.PropName_Items);

        foreach (Foo Item in Items)
        {
            writer.WriteStartElement("Foo");
            FooSerializer.Serialize(writer, Item);
            writer.WriteEndElement();//"Foo"
        }

        writer.WriteEndElement(); //FooCollection.PropName_Items
    }
    #endregion
}

2 个答案:

答案 0 :(得分:1)

我也有类似的问题,我设法修复了,但我没有使用ObservableCollection,而是正常List<Column>Column是我的一类,包含作为公共成员:string,int和bool,它们都是xmlserializable。 List<>,因为它实现IEnumerable也是XMLSerializable

您必须在自定义Foo类中处理的唯一事项是:您必须将成员设置为公共,无参数构造函数,并且类本身必须是公共的。您无需为xml序列化添加[Serializable]标记。

我不需要实现FooCollection类,因为我使用的是没有xml序列化问题的List。

另一件事:

  • 派生自ApplicationSettingsBase的班级可以内部封闭 - 不需要公开。
  • 列表上方的
  • 添加了xml可序列化的事实:

    [全球:: System.Configuration.UserScopedSettingAttribute()] [SettingsSerializeAs(SettingsSerializeAs.Xml)] [全球:: System.Configuration.DefaultSettingValueAttribute( “”)] 公共列表列 {     得到     {         return((List)this [“Columns”]);     }     组     {         这[[Columns“] =(List)值;     } }

如果这不起作用,您还可以尝试实施TypeConverter

答案 1 :(得分:0)

我在两天内也遇到了一个非常类似的问题,但现在我找到了一个可能有用的缺失链接。 如果你和我的情况实际上相似,那么 类'Foo'和'FooCollection'需要明确公开!

我假设,在List2(ObservableCollection<Foo>)和List3(FooCollection)的情况下,.NET会遇到IXmlSerializable,这需要以某种方式显式公共访问(跨越自己程序集的边界) 。

相反的选项List1(ObservableCollection<string>)似乎在一个扁平的字符串-Typeconversion上运行,它对(内部)类'Foo'感到满意......

(来自ApplicationsettingsBase Docu: ApplicationSettingsBase使用两种主要机制 序列化设置: 1)如果存在可以转换为字符串的TypeConverter,我们就会使用它。 2)如果没有,我们回退到XmlSerializer

亲切的问候, 鲁迪