关闭应用程序时保存参数
Save parameters when application is closed
如何在关闭我的 Windows Phone Runtime 应用程序之前保存参数并在我激活我的应用程序时使用这些参数?我有一个 String 和一个 int 需要保存。
您可以为此使用 LocalSettings。
使用下面的代码将值保存到设置中
Windows.Storage.ApplicationDataContainer localSettings = Windows.Storage.ApplicationData.Current.LocalSettings;
localSettings.Values["exampleSetting"] = "test";
使用以下代码检索设置
var value = localSettings.Values["exampleSetting"] as string;
有更多详细信息here
如何在关闭我的 Windows Phone Runtime 应用程序之前保存参数并在我激活我的应用程序时使用这些参数?我有一个 String 和一个 int 需要保存。
您可以为此使用 LocalSettings。
使用下面的代码将值保存到设置中
Windows.Storage.ApplicationDataContainer localSettings = Windows.Storage.ApplicationData.Current.LocalSettings;
localSettings.Values["exampleSetting"] = "test";
使用以下代码检索设置
var value = localSettings.Values["exampleSetting"] as string;
有更多详细信息here