我在实现用户界面命令时遇到了一些困难。 我使用wpf,prism和mvvm。我的应用程序有两个区域 - 主菜单和菜单。 当app正在菜单区域(NavBarControl,Devexpress)中加载注册菜单项(NavBarGroup)。每个NavBarGroup都有一些NavBarItem。选择NavBarItem时,绑定执行的命令。某些命令允许创建实体。但是对于那个应用程序必须从服务器加载一些数据,在这个时候用户界面应该是响应。我尝试了下一个方法:
this.createAccount.Command = (ICommand)new DelegateCommand(this.ExecuteCreateAccount);
private void ExecuteCreateAccount()
{
AppEvent.OnShowNotificationEvent(UTNotificationType.ChangeMainLoaderStatus, "show", null);
if (this.isCreateAccountProcessing)
{
return;
}
this.isCreateAccountProcessing = true;
Task.Factory.StartNew(() => this.AccountListViewModel.LoadUsersCollection()).GetAwaiter().OnCompleted(this.ShowAccountEditor);
}
private void ShowAccountEditor()
{
AppEvent.OnShowNotificationEvent(UTNotificationType.ChangeMainLoaderStatus, null, null);
this.isCreateAccountProcessing = false;
if (this.createAccount.IsSelected)
{
this.AccountListViewModel.CreateNewItem();
}
}
但也许有更好的方法可以实现这一目标? 在进行后台计算时,应用程序显示加载程序(AppEvent.OnShowNotificationEvent)。如果用户选择另一个菜单项,则该命令被视为已取消,并且不应显示帐户编辑器。
答案 0 :(得分:0)
由于您使用的是DevExpress框架,我建议您使用AsyncCommand。根据文档,它专为您所描述的场景而设计。
答案 1 :(得分:0)
Prism的DelegateCommand
可以处理async
个任务。那怎么样:
this.createAccount.Command = (ICommand)new DelegateCommand(this.ExecuteCreateAccount);
private async Task ExecuteCreateAccount()
{
AppEvent.OnShowNotificationEvent(UTNotificationType.ChangeMainLoaderStatus, "show", null);
if (this.isCreateAccountProcessing)
{
return;
}
this.isCreateAccountProcessing = true;
await this.AccountListViewModel.LoadUsersCollection());
AppEvent.OnShowNotificationEvent(UTNotificationType.ChangeMainLoaderStatus, null, null);
this.isCreateAccountProcessing = false;
if (this.createAccount.IsSelected)
{
this.AccountListViewModel.CreateNewItem();
}
}
也就是说,如果AccountListViewModel.LoadUsersCollection()
可以异步。否则你应该把它包裹在Task.Run
这样的
await Task.Run( () => this.AccountListViewModel.LoadUsersCollection() );