Skip to content

Instantly share code, notes, and snippets.

@jasdev
Created July 30, 2012 05:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasdev/3205164 to your computer and use it in GitHub Desktop.
Save jasdev/3205164 to your computer and use it in GitHub Desktop.
2 line wonder
private void RadiusPanel_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
settings["radius"] = ((int)settings["radius"] % 10) + 1;
radiusText.Text = (int)settings["radius"] + ((int)settings["radius"] != 1 ? " miles" : " mile");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment