Skip to content

Instantly share code, notes, and snippets.

@Clancey
Created June 2, 2014 09:13
Show Gist options
  • Save Clancey/825d7de6643c328af6e2 to your computer and use it in GitHub Desktop.
Save Clancey/825d7de6643c328af6e2 to your computer and use it in GitHub Desktop.
public static class ButtonExtensions
{
public static Button OnTap(this Button button, Action tapped)
{
button.Clicked += (s, e) => tapped ();
return button;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment