gpt4 book ai didi

c# - 如何从不同的线程更新命令的 "CanExecute"值?

转载 作者:行者123 更新时间:2023-12-04 16:11:25 25 4
gpt4 key购买 nike

在我的应用程序中,我有一个命令,我只希望用户能够在它尚未运行时触发。有问题的命令绑定(bind)到 WPF 按钮,这意味着如果 CanExecute 为 false,它会自动禁用该按钮。到目前为止一切顺利。

不幸的是,命令执行的操作是一个长时间运行的操作,所以它需要发生在不同的线程上。我不认为这会是一个问题......但它似乎是。

我提取了一个可以显示问题的最小样本。如果绑定(bind)到一个按钮(通过 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;
}
}

最佳答案

变化:

onCanExecuteChanged(this, EventArgs.Empty);

到:

Application.Current.Dispatcher.BeginInvoke((Action)(onCanExecuteChanged(this, EventArgs.Empty)));

编辑:

原因是 WPF 正在监听这些事件并尝试在 UI 元素中执行操作(即在 Button 中切换 IsEnabled),因此这些事件必须在 UI 线程中提出。

关于c# - 如何从不同的线程更新命令的 "CanExecute"值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15075553/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com