0

我有两节课。首先是通过使用独立存储来存储来自 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
     }

谢谢。

4

1 回答 1

2

这是你想要的吗?

if ((bool)System.IO.IsolatedStorage.IsolatedStorageSettings.ApplicationSettings["EnableLocation"] == true)

PS 我建议您为所有值创建一个类,存储在应用程序设置中并使用它。

像这样:

public static class SettingsManager
    {
        private static IsolatedStorageSettings appSettings;

        public static IsolatedStorageSettings AppSettings
        {
            get { return SettingsManager.appSettings; }
            set { SettingsManager.appSettings = value; }
        }

        public static void LoadSettings()
        {
            // Constructor
            if (appSettings == null)
                appSettings = IsolatedStorageSettings.ApplicationSettings;

            // Generate Keys if not created
            if (!appSettings.Contains(Constants.SomeKey))
                appSettings[Constants.SomeKey] = "Some Default value";

            // generate other keys             

       }
   }

然后您可以使用该类实例

在您的启动类中将其初始化为SettingsManager.LoadSettings();

然后在任何课程中都可以调用它:

if ((bool)SettingsManager.AppSettings[Constants.SomeBoolKey])
     doSomething();
于 2013-02-04T11:18:15.700 回答