3

我有一个 BusyIndi​​cator,我将 IsBusy 绑定到我的视图模型中的 Busy 属性。

<xctk:BusyIndicator IsBusy="{Binding Busy}" x:Name="busyBox" Grid.Row="2"
              HorizontalAlignment="Center"
            VerticalAlignment="Center" BusyContent="Contacting Server" >
    </xctk:BusyIndicator>

当我开始 web 服务调用(异步)时,我将忙切换为 true,并在回调中将其设置为 false。

这第一次效果很好,之后每次都不再显示忙碌指示符。我在回调中添加了一个 thread.sleep (只是在 x=case 它第二次移动得太快了)。

我知道我的属性正在正确通知,因为其他绑定控件并按预期工作。似乎busyindicator只适用于一种用途

(顺便说一句,我正在使用 mvvm light toolkit v3)

查看型号代码

this.Busy = true; //This proverty is declared correctly with notifications etc
IPersonSearchService searcher = new PersonSearchService(); //class that does my      webservice, ad i pass it a callback method from my UI (see below)
searcher.FindByPersonDetails(ps, GetAllPeopleCallback);


private void GetAllPeopleCallback (PersonSearchResult result, Exception e)
    {
        this.Busy = false;
        ((Models.PersonSearch)this.Model).Persons = result.Persons; //bound to my grid
         CommandManager.InvalidateRequerySuggested();  //i need to do this to make a button who's canexecute command binding happen         
    }

这是访问 web 服务的类

class PersonSearchService : IPersonSearchService
{
    public void FindByPersonDetails(WSPersonSearch.PersonSearch ps, Action<PersonSearchResult, Exception> Callback)
    {
        BackgroundWorker worker = new BackgroundWorker();

        worker.DoWork += delegate(object s, DoWorkEventArgs args)
        {
            WSPersonSearch.PersonSearch search = (WSPersonSearch.PersonSearch)args.Argument;
            PersonSearchWebServiceClient wc = new PersonSearchWebServiceClient();
            PersonSearchResult r = wc.FindByPersonDetails(ps);
            args.Result = r;
        };

        worker.RunWorkerCompleted += delegate(object s, RunWorkerCompletedEventArgs args)
        {
            PersonSearchResult result = (PersonSearchResult)args.Result;
            Callback(result, null);
        };

        worker.RunWorkerAsync();
    }
}

ui 上的其他所有内容都表现得很好。我的按钮正确激活/停用。我的网格得到很好的更新等等

4

1 回答 1

0

我想我解决了。似乎(并且经常如此)并且通过发布上面的示例代码(删除我所有的测试混乱)我解决了它。

好的,该模型有效,但是因为我正在与 Web 服务通话,并且在第一次通话后,我的 Web 服务通话速度非常快,之后它的移动速度太快了,我看不到 bsy 指示符。

所以为了解决这个问题......我变得懒惰并增加了睡眠。但我把睡眠放在回调中。因此,由于回调在 ui 线程中被触发,因此它在错误的位置阻塞。忙碌指示灯在进入睡眠状态时已经来去匆匆。

所以我把它移到了 DoWork 方法中(它在 ui threqad 之外)并且繁忙的指示器保持不变。

傻我。谢谢各位大侠的建议!

于 2012-11-29T09:56:51.177 回答