在我的应用程序中,我有一个Command,我只希望用户能够在它尚未运行时触发。有问题的命令绑定到WPF按钮,这意味着如果CanExecute为false,它会自动禁用该按钮。到目前为止一切都很好。
不幸的是,该命令执行的操作是一个长时间运行的操作,因此需要在不同的线程上进行。我认为这不会是一个问题......但似乎是这样。
我已经提取出一个可以显示问题的最小样本。如果绑定到一个按钮(通过LocalCommands.Problem静态引用),将根据需要禁用该按钮。当工作线程尝试更新CanExecute时,将从System.Windows.Controls.Primitives.ButtonBase内部抛出InvalidOperationException。
解决此问题的最合适方法是什么?
以下示例命令代码:
using System;
using System.Threading;
using System.Windows.Input;
namespace InvalidOperationDemo
{
static class LocalCommands
{
public static ProblemCommand Problem = new ProblemCommand();
}
class ProblemCommand : ICommand
{
private bool currentlyRunning = false;
private AutoResetEvent synchronize = new AutoResetEvent(false);
public bool CanExecute(object parameter)
{
return !CurrentlyRunning;
}
public void Execute(object parameter)
{
CurrentlyRunning = true;
ThreadPool.QueueUserWorkItem(ShowProblem);
}
private void ShowProblem(object state)
{
// Do some work here. When we're done, set CurrentlyRunning back to false.
// To simulate the problem, wait on the never-set synchronization object.
synchronize.WaitOne(500);
CurrentlyRunning = false;
}
public bool CurrentlyRunning
{
get { return currentlyRunning; }
private set
{
if (currentlyRunning == value) return;
currentlyRunning = value;
var onCanExecuteChanged = CanExecuteChanged;
if (onCanExecuteChanged != null)
{
try
{
onCanExecuteChanged(this, EventArgs.Empty);
}
catch (Exception e)
{
System.Windows.MessageBox.Show(e.Message, "Exception in event handling.");
}
}
}
}
public event EventHandler CanExecuteChanged;
}
}
答案 0 :(得分:4)
变化:
onCanExecuteChanged(this, EventArgs.Empty);
为:
Application.Current.Dispatcher.BeginInvoke((Action)(onCanExecuteChanged(this, EventArgs.Empty)));
修改强>
原因是WPF正在侦听这些事件并尝试在UI元素中执行操作(IE在IsEnabled
中切换Button
),因此必须在UI线程中引发这些事件