gpt4 book ai didi

c# - 即使应用程序关闭,如何在 Windows Phone 的 IsolatedStorageSettings 中保留数据?

转载 作者:行者123 更新时间:2023-11-30 16:13:07 26 4
gpt4 key购买 nike

我想存储一些基本信息以防止每次登录,因为我使用的是 IsolatedStorageSettings,但数据仅在应用程序打开之前存储,即使应用程序关闭我如何保留数据并在应用程序再次启动时返回。我的代码如下,用于存储我使用的信息

public static IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;
settings.Add("user", MainPage.user);

我用它来检索

if (MainPage.settings.Contains("user"))
{
MainPage.user = (User)MainPage.settings["user"];
}

这里MainPage.user是MainPage类中User类的静态对象。

最佳答案

您需要调用 Save方法:

settings.Save();

关于c# - 即使应用程序关闭,如何在 Windows Phone 的 IsolatedStorageSettings 中保留数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22168737/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com