DataContext正在加载调用操作
我想知道是否有任何方法可以订阅一个事件,该事件将告诉我 InvokeOperation 在给定的 DomainContext 上是否繁忙。与 IsLoading 完全相同(不会在 InvokeOperation 上触发)。目前我有:
DomainContext.PropertyChanged += (c1, c2) =>
{
IsBusy = (DomainContext.IsLoading && DomainContext.IsSubmitting);
};
I wanted to know if there is any way I can subscribe to a event that will tell me if an InvokeOperation is busy on the given DomainContext. Exactly like the IsLoading (which does not fire on InvokeOperation). At the Moment I've got:
DomainContext.PropertyChanged += (c1, c2) =>
{
IsBusy = (DomainContext.IsLoading && DomainContext.IsSubmitting);
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1) 您提供的代码需要检查更改的属性名称
2)DomainContext 不提供调用操作的标志。但您始终可以自己设置。
1) the code which you provide requires check of changed property name
2)DomainContext doesn't provide flag for invoke operation. But you always can set it yourself.