您好我正在尝试使用带有MVVM的telerik Busy指示器。我在Mainwindow有忙碌指示器。当窗口中的某个用户控件上有操作(按钮单击)时,用户控件视图模型会向MinwindowviewModel发送消息。在消息上,应该显示忙碌指示符。但这不起作用。为什么这不起作用?
用户控制视图模型
public class GetCustomerVM : ViewModelBase
{
private int _CustomerId;
public int CustomerId
{
get { return _CustomerId; }
set
{
if (value != _CustomerId)
{
_CustomerId = value;
RaisePropertyChanged("CustomerId");
}
}
}
public RelayCommand StartFetching { get; private set; }
public GetCustomerVM()
{
StartFetching = new RelayCommand(OnStart);
}
private void OnStart()
{
Messenger.Default.Send(new Start());
AccountDetails a = AccountRepository.GetAccountDetailsByID(CustomerId);
Messenger.Default.Send(new Complete());
}
}
用户控制视图模型是:
private bool _IsBusy;
public bool IsBusy
{
get { return _IsBusy; }
set
{
if (value != _IsBusy)
{
_IsBusy = value;
RaisePropertyChanged("IsBusy");
}
}
}
public WRunEngineVM()
{
RegisterForMessages();
}
private void RegisterForMessages()
{
Messenger.Default.Register<Start>(this, OnStart);
Messenger.Default.Register<Complete>(this, OnComplete);
}
private void OnComplete(Complete obj)
{
IsBusy = false;
}
private void OnStart(Start obj)
{
IsBusy = true;
}
在主窗口视图中,根元素是
<telerik:RadBusyIndicator IsBusy="{Binding IsBusy}" telerik:StyleManager.Theme="Windows7">
答案 0 :(得分:5)
AccountDetails a = AccountRepository.GetAccountDetailsByID(CustomerId);
做什么?我的猜测是,无论发生什么,都会在UI线程上运行。因为它在UI线程上发生,所以UI永远不可能刷新并显示RadBusyIndicator
。尝试将OnStart
中的所有工作移至BackgroundWorker
,包括发送消息。您将在这里遇到问题,因为消息将从后台线程更新UI线程,因此您需要使用Dispatcher
将IsBusy
设置为true
或{{1 }}