隔离存储设置(从不同视图保存和检索)

时间:2011-12-10 21:09:47

标签: c# xaml windows-phone-7 isolatedstorage

我有两个观点(MainPage.xaml& Settings.xaml)

我想在“设置”视图中保存字符串 &安培;在MainPage中检索其内容

这是我的代码,但我收到了一个错误:

Settings.xaml.cs:

var settings = IsolatedStorageSettings.ApplicationSettings;
                settings.Add("setPlan", "This is my text that i want to retreive");

MainPage.xaml.cs中:

var location = settings["setPlan"].ToString();

错误是:当前上下文中不存在名称“设置”。

但是这个“setPlan”字符串不应该在我的sandBox中并且可以从任何视图访问吗?

1 个答案:

答案 0 :(得分:1)

你不需要:

var settings = IsolatedStorageSettings.ApplicationSettings; 
var location = settings["setPlan"].ToString(); 
MainPage.xaml.cs中的

settings看来它的范围是它在Settings.xaml.cs中调用它的方法。