Wpf中的IsolatedStorageSettings

时间:2014-05-30 07:40:55

标签: c# wpf silverlight isolatedstorage

我正在将Silverlight应用程序转换为WPF应用程序。

在我的silverlight应用程序中,我有这个

    private static IsolatedStorageSettings userSettings = IsolatedStorageSettings.ApplicationSettings;

    public static String Division
    {
        get
        {
            if (userSettings.PropertyValues["DIVISION"] != null)
            {
                return (String)userSettings["DIVISION"];
            }
            else
            {
                return String.Empty;
            }
        }
        set
        {
            if (userSettings.PropertyValues["DIVISION"] != null)
            {
                userSettings["DIVISION"] = value;
            }
            else
            {
                userSettings.DIVISON = value;
            }
        }
    }

但是当将此类复制到我的WPF项目时,我收到错误

  

类型或命名空间' IsolatedStorageSettings'找不到(你错过了使用指令或汇编引用)

我有使用声明

 using System.IO.IsolatedStorage;

在班上排名靠前,但仍然没有运气。如果这个类在WPF中根本不存在,那还有另一种选择吗?

0 个答案:

没有答案