0

上次当我查看我的代码时,我发现我将错误的 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);
 }
4

1 回答 1

2

实际上,如果您查看实际的DeclaringType 文档 ,它会说:

评论

没用过

所以声明它没有多大意义

但是需要创建一个新的 BindableProperty,即使它没有意义

于 2021-11-02T11:11:04.450 回答