我将 AsynchronousCommand 绑定到视图的按钮。我需要做的是在用户单击按钮时验证窗口的一些文本框。如果验证失败,则应向用户显示一个错误消息框。
我如何使用 IMessageService 做到这一点?
使用此代码:
var messageService = GetService<IMessageService>();
messageService.ShowError("Bitte wählen Sie einen Plan aus!");
我得到 IvalidOperationException: invalidoperationexception 调用线程无法访问此对象,因为不同的线程拥有它。
我怎样才能避免这个问题?
在此先感谢您的帮助。