public static BindableProperty Register(string sourcePropertyName)
		{
			var bindableProperty = new BindableProperty();
			bindableProperty._ElementPropertyName = sourcePropertyName;
			
			return bindableProperty;
		}