DataContext正在加载调用操作

发布于 2024-10-30 20:57:08 字数 328 浏览 5 评论 0原文

我想知道是否有任何方法可以订阅一个事件,该事件将告诉我 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃→可爱长大的 2024-11-06 20:57:08

1) 您提供的代码需要检查更改的属性名称

DomainContext.PropertyChanged += (c1, c2) =>
                {
                  if(c2.PropertyName == "IsLoading" || c2.PropertyName == "IsSubmitting")
                    IsBusy = (DomainContext.IsLoading && DomainContext.IsSubmitting);
                };

2)DomainContext 不提供调用操作的标志。但您始终可以自己设置。

IsBusy = true;
DomainContext.InvokeMyOperation(c=>
                                    {
                                      //in callback
                                      IsBusy = false;
                                    });

1) the code which you provide requires check of changed property name

DomainContext.PropertyChanged += (c1, c2) =>
                {
                  if(c2.PropertyName == "IsLoading" || c2.PropertyName == "IsSubmitting")
                    IsBusy = (DomainContext.IsLoading && DomainContext.IsSubmitting);
                };

2)DomainContext doesn't provide flag for invoke operation. But you always can set it yourself.

IsBusy = true;
DomainContext.InvokeMyOperation(c=>
                                    {
                                      //in callback
                                      IsBusy = false;
                                    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文