Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save haavamoa/450677f18a4f281858e48efe8425118d to your computer and use it in GitHub Desktop.
Save haavamoa/450677f18a4f281858e48efe8425118d to your computer and use it in GitHub Desktop.
Xamarin Forms Bindableproperty Live Template
public static readonly BindableProperty $property$Property = BindableProperty.Create(
nameof($property$),
typeof($type$),
typeof($classname$));
public $type$ $property$
{
get => ($type$)GetValue($property$Property);
set => SetValue($property$Property, value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment