public static bool GetIsLightTheme() { bool isLightTheme = false; if ((Visibility)Application.Current.Resources["PhoneLightThemeVisibility"] == Visibility.Visible) { isLightTheme = true; } return(IsolatedStorageSettingsHelper.GetValue <bool>(IsLightTheme, isLightTheme)); }
public static string GetMinCashLimitColor() { return(IsolatedStorageSettingsHelper.GetValue <string>(MinCashLimitColor, "Orange")); }
public static int?GetMinCashLimitValue() { int?value = IsolatedStorageSettingsHelper.GetValue <int?>(MinCashLimitValue, 250); return((value != null) ? value : DefaultMinCashLimitValue); }
public static string GetExportDataEmail() { return(IsolatedStorageSettingsHelper.GetValue <string>(ExportDataEmail, string.Empty)); }
public static bool GetWithLiveTileDecimalDigits() { return(IsolatedStorageSettingsHelper.GetValue <bool>(WithLiveTileDecimalDigits, false)); }
public static bool GetHasFeedback() { return(IsolatedStorageSettingsHelper.GetValue <bool>(HasFeedback, false)); }
public static int GetExecutionCounter() { return(IsolatedStorageSettingsHelper.GetValue(ExecutionCounter, 1)); }
public static string GetNotes() { return(IsolatedStorageSettingsHelper.GetValue <string>(Notes, string.Empty)); }