如何序列化自定义类型的ObservableCollection

时间:2013-03-15 01:11:37

标签: c# serialization windows-phone-8 observablecollection

我正在尝试将自定义类型的ObservableCollection保存到我的wp8应用程序中的独立存储。可观察集合包含BitmapImage和string类型的值。这样做的目的是从CameraCaptureTask结果中保存图像及其各自的名称。

void cameraCaptureTask_Completed(object sender, PhotoResult e)
    {
        if (e.TaskResult == TaskResult.OK)
        {
            //clear current values if any
            imgChosenPhotoFileName = null;
            bmp = new BitmapImage();

            imgChosenPhotoFileName = e.OriginalFileName;

            //Display the photo on the page
            bmp.SetSource(e.ChosenPhoto);
            imgChosenPhoto.Source = bmp;

            //Add photo info to Recent
            AddToImgList(imgChosenPhotoFileName, bmp);
        }
    }

    private void AddToImgList(string fileName, BitmapImage bitmap)
    {
        Settings.imageList.Value.Add(new ImageItem() { ImageName = fileName, ImageUri = bitmap });
        //Settings.imageList.Value.Add(bitmap);

        //populate the List with the saved imageList
        imgList.ItemsSource = Settings.imageList.Value;
    }

其中Settings是我声明要保存名为imageList的可观察集合的类,而imgList是observablecollection绑定到的列表框。

Settings.cs

public static class Settings
{
    public static readonly Setting<ObservableCollection<ImageItem>> imageList = new Setting<ObservableCollection<ImageItem>>("imageList", new ObservableCollection<ImageItem>());
}

设置是从隔离存储中保存和加载数据的类。

Setting.cs

public class Setting<T>
{
    string name;
    T value;
    T defaultValue;
    bool hasValue;

    public Setting(string name, T defaultValue)
    {
        this.name = name;
        this.defaultValue = defaultValue;
    }

    public T Value
    {
        get
        {
            //Check for the cached value
            if (!this.hasValue)
            {
                //Try to get the value from Isolated Storage
                if (!IsolatedStorageSettings.ApplicationSettings.TryGetValue(this.name, out this.value))
                {
                    //It hasn't been set yet
                    this.value = this.defaultValue;
                    IsolatedStorageSettings.ApplicationSettings[this.name] = this.value;
                }
                this.hasValue = true;
            }
            return this.value;
        }

        set
        {
            //Save the value to Isolated Storage
            IsolatedStorageSettings.ApplicationSettings[this.name] = value;
            this.value = value;
            this.hasValue = true;
        }
    }

    public T DefaultValue
    {
        get { return this.defaultValue; }
    }

    // Clear cached value
    public void ForceRefresh()
    {
        this.hasValue = false;
    }
}

此外,可观察集合的类型为ImageItem,如下所示

ImageItem.cs

public class ImageItem
{
    public BitmapImage ImageUri
    {
        get;
        set;
    }

    public string ImageName
    {
        get;
        set;
    }
}

出于某种原因,虽然应用程序运行时图片保存在imageList集合中并填充在imgList列表框中,但是当应用程序关闭并重新启动时,observablecollection是空的?我相信BitmapImage是问题(它没有序列化?)我无法获得可观察的集合来保存CameraCaptureTask中的图像?

1 个答案:

答案 0 :(得分:0)

在您的代码中,我看到您正在使用IsolatedStorage类。 我真的不知道使用IsolatedStorage类,但我怀疑为它分配一个变量

IsolatedStorageSettings.ApplicationSettings[this.name] = this.value;

不进行设置以将值保存到变量中。我已经快速搜索并在msdn找到了一个保存方法,也许它可以提供帮助。

但是,您可以将问题范围缩小到仅使用IsolatedStorageSettings来获得更好的答案。