我有两节课。首先是通过使用独立存储来存储来自 ToggleSwitchButton 的布尔值。
像这样...
private void tglSwitch_Checked(object sender, RoutedEventArgs e)
{
System.IO.IsolatedStorage.IsolatedStorageSettings.ApplicationSettings["EnableLocation"] = true;
}
private void tglSwitch_Unchecked(object sender, RoutedEventArgs e)
{
System.IO.IsolatedStorage.IsolatedStorageSettings.ApplicationSettings["EnableLocation"] = false;
}
第二类将使用第一类的布尔值来做某事。
像这样...
if(booleanValFromFirst){
//Do something
}
else{
//Do something
}
谢谢。