Created
September 19, 2015 02:00
-
-
Save rid00z/23b64436dd104f5d810d to your computer and use it in GitHub Desktop.
Visual/Xamarin Studio - Bindable Property Template for Xamarin.Forms
This file contains 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 readonly BindableProperty $Name$Property = | |
BindableProperty.Create<$owner$, $type$>( | |
p => p.$Name$, default($type$)); | |
public $type$ $Name$ { | |
get { return ($type$)GetValue($Name$Property); } | |
set { SetValue($Name$Property, value); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment