gpt4 book ai didi

c# - Windows Phone - 如何首次设置 LocalSettings?

转载 作者:太空狗 更新时间:2023-10-29 22:10:36 24 4
gpt4 key购买 nike

在桌面应用程序或 Web 项目中,有 App.configs 和 Web.configs 文件来存储设置。这些设置是在开发时(或以后的任何时候)设置的,但如果发生这种情况,它总是一次操作。

在 Windows Phone 8.1 XAML 中没有任何 App.config 文件,因此开发人员可以使用 Windows.Storage.ApplicationData.Current.LocalSettings。好的。

如何第一次设置这些设置(这意味着在第一次运行应用程序时,所以我以后只能读取它们并且有时更新现有值)?当然,我可以在运行应用程序时设置设置,但这是浪费时间。第一次如何在您的应用程序中设置 LocalSettings?我看到了这个解决方案 Is there a "first run" flag in WP7但我不这么认为,这是唯一的可能性。

最佳答案

var localSettings = Windows.Storage.ApplicationData.Current.LocalSettings;

// Create a simple setting

localSettings.Values["exampleSetting"] = "Hello Windows";

// Read data from a simple setting

Object value = localSettings.Values["exampleSetting"];

if (value == null)
{
// No data
}
else
{
// Access data in value
}

// Delete a simple setting

localSettings.Values.Remove("exampleSetting");

Msdn Reference

Persistance of Data

关于c# - Windows Phone - 如何首次设置 LocalSettings?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26798977/

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