Skip to content

Instantly share code, notes, and snippets.

@rid00z
Created September 19, 2015 02:00
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rid00z/23b64436dd104f5d810d to your computer and use it in GitHub Desktop.
Save rid00z/23b64436dd104f5d810d to your computer and use it in GitHub Desktop.
Visual/Xamarin Studio - Bindable Property Template for Xamarin.Forms
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