我希望保存用户输入日期,并在用户重新启动我的UWP应用时加载它。据我所知,我应该使用IsolatedStorage。但不知道如何;虽然我添加了#34;使用System.IO.IsolatedStorage;"对我的程序的指令,当我编写这行代码时,我仍然遇到以下错误:
var appSettings = IsolatedStorageSettings.ApplicationSettings;
错误:
CS0103名称' IsolatedStorageSettings'不存在于 目前的背景。
知道如何让它发挥作用吗?
答案 0 :(得分:0)
在 UWP 中,您没有 IsolatedStorageSettings 类,而是使用LocalSettings:
var localSettings = Windows.Storage.ApplicationData.Current.LocalSettings;
localSettings.Values["yourSetting"] = "Value"; // save setting
string savedValue = (string)localSettings.Values["yourSetting"]; // get saved data
有关在应用中保存数据的更多帮助,请查看at MSDN - 尤其要注意可以在那里保存哪些类型的值。