我有Windows Phone 8.0应用程序,该应用程序使用IsolatedStorageSettings.ApplicationSettings存储设置等。现在,我打算将该应用程序“更新”到Windows Phone Store 8.1应用程序,并使用ApplicationData.Current.RoamingSettings。
如何将已保存到IsolatedStorageSettings.ApplicationSettings的应用程序设置迁移到ApplicationData.Current.RoamingSettings?
最佳答案
如果您要更新到Silverlight 8.1应用程序,IsolatedStorageSettings.ApplicationSettings
仍然可以使用。只需读出设置并将其复制到ApplicationData.Current.RoamingSettings
如果您要更新为通用应用程序,则在这里进行讨论:Windows Phone 8 ApplicationSettings - Get settings in Universal app。结果是您正在寻找__Application Settings文件,并且您想对其进行反序列化以获取设置。没有通用的解决方案,但是如果您知道文件中期望的内容,那就不难了。