Я создал свой собственный элемент управления в Xamarin, в котором я хочу установить свойство из кода xaml.
<MyClass MyProperty="10" />
Я пытался использовать BindableProperty, чтобы заставить его работать, мой код выглядит так:
public static readonly BindableProperty BindProp = BindableProperty.Create(
nameof(MyProperty),
typeof(int),
typeof(MyClass),
0);
public int MyProperty
{
get
{
return (int)GetValue(BindProp);
}
set
{
SetValue(BindProp, value);
}
}
Я ускорил запуск MyProperty до 10. Что я делаю не так?