windows phone 8.1 中的独立存储

isolated storage in windows phone 8.1

我正在使用 VS 2015 开发 windows phone8.1 应用程序。我在 page1.When 中有一个文本框和一个按钮 我在文本框中输入文本并单击按钮,输入的文本应该存储在隔离存储中,并且应该在下一个 page.I 上午显示c# 新手,任何人都可以帮助我吗?

page1:(写入值)

Windows.Storage.ApplicationData.Current.LocalSettings.Values["settingName"] = "settingValue";

page2(读取值):

Object settingValue = Windows.Storage.ApplicationData.Current.LocalSettings.Values["settingName"];
if (value != null)
{  
  //do your thing  
}