我在我的iOS应用程序中使用MVVMCross/Xamarin。我的ViewModel的属性定义如下:publicreadonlyINCEntity=newNC();在哪里publicclassAddress{publicstringLine1{get;set;}publicstringLine2{get;set;}publicstringLine3{get;set;}//otherproperties...}如果我以这种方式绑定(bind),它会起作用:set.Bind(Line1Text).To("Entity.Line1").TwoWay();如果我以这种方式进行绑定(bind)