This question is locked. New answers and comments are not allowed.
I have a RadBusyIndicator
In my ViewModel, I have the following that does not display it. I do not set IsBusy to false anywhere. So it should always show. If I change the above to IsBusy="True", then it always shows. What needs to change below in order to get it to work with the Binding?
<telerik:RadBusyIndicator x:Name="radBusyIndicator" IsBusy="{Binding IsBusy}" DisplayAfter="00:00:00" >In my ViewModel, I have the following that does not display it. I do not set IsBusy to false anywhere. So it should always show. If I change the above to IsBusy="True", then it always shows. What needs to change below in order to get it to work with the Binding?
if (!IsDesignTime) { IsBusy = true; SLCRMSrvc.SLtoCRMClient teamProxy = new SLCRMSrvc.SLtoCRMClient(); teamProxy.GetUserTeamsCompleted += new EventHandler<SLCRMSrvc.GetUserTeamsCompletedEventArgs>(teamProxy_GetUserTeamsCompleted); teamProxy.GetUserTeamsAsync(CurrentUser.ToString());