Template用法:
1.BindableProperty
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); } }