2011-12-10 77 views
0

我有兩個觀點(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」字符串應該在我的沙盒中,並從任何視圖訪問?

回答

1

不要你需要:

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

settings看起來像它被調用的方法的範圍,在Settings.xaml.cs中。