上次当我查看我的代码时,我发现我将错误的 declaringType 分配给了我的自定义 ContentView 声明类型。这很有趣,因为它不会影响此内容视图的工作方式。它通过了 UI 测试和集成测试。所以我的问题是。在 BindableProperty 中声明类型的目的是什么?
public partial class SomeContentView : ContentView
{
public static readonly BindableProperty IsSthProperty = BindableProperty.Create(
propertyName: nameof(IsSth),
returnType: typeof(bool),
declaringType: typeof(SomeContentView), <-- There were wrong assignment
defaultValue:true);
}