OStack程序员社区-中国程序员成长平台

标题: c# - Mvvmlight 和 Xamarin 统一 API : Property not found [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 05:06
标题: c# - Mvvmlight 和 Xamarin 统一 API : Property not found

我在这里尝试使用 Laurent 提供的 iOS 上统一 API 的 dll:

http://blog.galasoft.ch/posts/2015/01/porting-mvvmlight-to-the-xamarin-ios-unified-api-64-bits/#respond

还有一些问题。我不知道这是否是一个新错误,或者我做错了什么。

1) 我尝试将 ViewModel 的属性绑定(bind)到 UI 的属性:

_binding = this.SetBinding(() => ViewModel.IsLoading, () => _myView.IsLoading);

myViewViewController.View 的自定义 subview 。

但在运行应用程序时,我收到以下错误:

System.InvalidOperationException: Property not found: IsLoading

2)由于第一个片段不起作用,我尝试了以下

_binding = this.SetBinding(() => ViewModel.IsLoading).WhenSourceChanges(
 () => _myView.IsLoading = ViewModel.IsLoading);

它工作正常。但是,当我对 List 的属性执行类似操作时,我会收到很多 WhenSourceChanges 事件,并且 UI 会更新太多次。这不是很理想。

如果我正在从我的 ViewModel 收听 PropertyChanged 事件,我只会得到列表的一次更新。因此,WM 似乎没有问题。



Best Answer-推荐答案


据我所知,这是一个反射问题。将字段 _myView 更改为属性应该可以解决此问题。例如:

private UIView MyView {
    get {
        return _myView;
    }
}

然后像这样绑定(bind):

_binding = this.SetBinding(() => ViewModel.IsLoading, () => MyView.IsLoading);

您也可以使用不使用表达式的扩展方法之一来创建绑定(bind)。

关于c# - Mvvmlight 和 Xamarin 统一 API : Property not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28210124/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4