Created
June 2, 2014 09:13
-
-
Save Clancey/825d7de6643c328af6e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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