Skip to content

Instantly share code, notes, and snippets.

@paulpatarinski
Created February 17, 2015 16:49
Show Gist options
  • Save paulpatarinski/ab0d8eff889abc9660d3 to your computer and use it in GitHub Desktop.
Save paulpatarinski/ab0d8eff889abc9660d3 to your computer and use it in GitHub Desktop.
Xamarin Forms Bindable Property Resharper Template
public static readonly BindableProperty $propertyName$Property =
BindableProperty.Create("$propertyName$", typeof($propType$), typeof($controlType$), default($propType$));
public $propType$ $propertyName$
{
get { return ($propType$)GetValue($propertyName$Property); }
set { SetValue($propertyName$Property, value); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment