模拟器上的隔离存储总是空的?

发布于 2025-01-05 06:41:52 字数 494 浏览 0 评论 0原文

在我的 WP7 应用程序中,我正在做:

string userName = IsolatedStorageSettings.ApplicationSettings.Contains("UserName") ? IsolatedStorageSettings.ApplicationSettings["UserName"].ToString() : null;
if (string.IsNullOrEmpty(userName))
    IsolatedStorageSettings.ApplicationSettings["UserName"] = "test";

我启动我的应用程序(F5),当然,用户名是空的,因此它存储在独立存储中。

我停止我的应用程序(停止调试),并且我不关闭模拟器

再次启动我的应用程序(F5),但仍然为空。

我读到,当模拟器未关闭时,隔离存储应该持续存在。

我做错了什么?

预先感谢您的回答。

in my WP7 application, I'm doing :

string userName = IsolatedStorageSettings.ApplicationSettings.Contains("UserName") ? IsolatedStorageSettings.ApplicationSettings["UserName"].ToString() : null;
if (string.IsNullOrEmpty(userName))
    IsolatedStorageSettings.ApplicationSettings["UserName"] = "test";

I launch my app (F5), off course, the userName is empty, so it's stored in isolated storage.

I stop my app (stop debugging), and I don't close emulator

Launch again my app (F5), but still empty .

I've read that the isolated storage should persist while the emulator isn't closed.

What am I doing wrong ?

Thanks in advance for your answer.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

樱娆 2025-01-12 06:41:52

您还需要致电。

IsolatedStorageSettings.ApplicationSettings.Save();

更改设置后

You need to also call

IsolatedStorageSettings.ApplicationSettings.Save();

after you've changed the settings.

仲春光 2025-01-12 06:41:52

您是否尝试过正常退出应用程序? (通过按模拟器中的后退按钮,而不是按 Visual Studio 中的“停止”按钮)。我认为IsolatedStorageSettings.ApplicationSettings的内容在应用程序退出时保存。 Visual Studio“停止”按钮会终止应用程序,从而阻止保存代码运行。

Have you tried exiting the app normally? (by pressing the back button in the emulator, not by pressing the 'stop' button in Visual Studio). I think the content of IsolatedStorageSettings.ApplicationSettings is saved when the application exits. The Visual Studio 'stop' button kills the app, therefore preventing the saving code from running.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文