void TheSettings_PropertyChanged(object sender,
System.ComponentModel.PropertyChangedEventArgs e)
{
var settings = IsolatedStorageSettings.ApplicationSettings[StorageSettings]
as Dictionary<string, string>;
settings[e.PropertyName]= //call the method that has the same property
// name to get what the value is
LoadData();
}
这是我想要做的。这适用于Windows Phone 7系列应用程序。我试图确定当用户更改设置页面上的设置时更改了哪些值,并保存它。