Prism服务是否可以公开Observable <to>消除对Event Aggregator的需求?</t>

时间:2014-04-17 19:05:23

标签: wpf system.reactive prism-4

我们是否可以通过以下方式消除对IEventAggregator的需求:

namespace MyApp.Shared.Services
{
    public interface IMyPrismService
    {
        string GetApplicationProperty(string key);
        void SetApplicationProperty(KeyValuePair<string, string> pair);
        int GetMyWidgetCount();
        IObservable<IEnumerable<MyOtherWidget>> ReactToMyOtherWidgetsLoaded();
    }
}

...

当这种模式被视为有用时(即使IEventAggregator很酷),如何使用Reactive Extensions设置它?

0 个答案:

没有答案