Skip to content

Instantly share code, notes, and snippets.

@pcamp96
Created August 26, 2013 02:27
Show Gist options
  • Select an option

  • Save pcamp96/6337646 to your computer and use it in GitHub Desktop.

Select an option

Save pcamp96/6337646 to your computer and use it in GitHub Desktop.
private void InitializeSettings(RoutedEventArgs e)
{
if (settings.Contains("dynamicOn"))
{
DynamicCheck.IsChecked = (bool)settings["dynamicOn"];
}
else settings.Add("dynamicOn", true);
settings.Save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment