0

如何读取 MainPage.xaml/.cs 中的设置?

我使用此设置示例,但我没有其他类的访问权限。

例如:在 MainPage.xaml 我们有 TextBlock,在 SettingsWithoutConfirmation.xaml 我们有 TextBox,TextBlock 如何从 TextBox 读取此字符串(并将其保存到独立存储中)?

我是新手,请温柔;)

4

2 回答 2

0

我不确定我是否完全理解你的问题。在任何 xaml 页面中,您可以使用以下内容访问已存储在隔离存储中的设置:

var settings = IsolatedStorageSettings.ApplicationSettings;
if( settings.Contains("name") ) {
    //the value is available here
}

//to store a value permanently
settings["name"] = "New Name" 
于 2012-08-08T16:05:18.007 回答
0

尝试这个:

将数据保存到设置:

var settings = IsolatedStorageSettings.ApplicationSettings;
settings.Add("myemail", "support@gmail.com");

从设置中获取数据:

var location = settings["myemail"].ToString();
settings["myemail"] = "support@gmail.com";
于 2012-08-08T17:45:39.883 回答