Xamarin Bindable财产

时间:2018-05-04 13:17:33

标签: c# xaml xamarin

我在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.我做错了什么?

0 个答案:

没有答案