ReactiveUI如何使用WhenAnyObservable正确

编程入门 行业动态 更新时间:2024-10-28 14:35:55
本文介绍了ReactiveUI如何使用WhenAnyObservable正确的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我试图使用WhenAnyObservable首次。

I am attempting to use WhenAnyObservable for the first time.

在ReactiveList计数== 0和tipText长度> 0,那么我想在认购,或相反局部值设置为true。

When a ReactiveList Count == 0 and a tipText length is > 0 then I want to set a local value to true in the subscribe, or the opposite.

this.ViewModel.WhenAnyObservable( x => x.AutoCompleteItems.CountChanged, x => x.ObservableForProperty(y => y.TipText), (countChanged, tipText) => countChanged == 0 && tipText.Length > 0);

我无法得到这个工作。

I am having trouble getting this to work.

有没有招我应该做的,或者我应该用另一种WhenAny命令吗?

Is there any trick I should be doing, or should I be using one of the other WhenAny commands?

推荐答案

您已经有了正确的想法,但WhenAnyObservable不会返回项目,直到它有一个初步的项目为双方如果你使用> 1观测量。所以,你可能想:

You've got the right idea, but WhenAnyObservable doesn't return items until it has an initial item for both "sides" if you use >1 Observables. So you probably want:

this.ViewModel.WhenAnyObservable( x => x.AutoCompleteItems.CountChanged.StartWith(0), x => x.WhenAnyValue(y => y.TipText), (countChanged, tipText) => countChanged == 0 && tipText.Length > 0);

更多推荐

ReactiveUI如何使用WhenAnyObservable正确

本文发布于:2023-11-12 18:01:32,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1582161.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:如何使用   正确   ReactiveUI   WhenAnyObservable

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!