我对 Dispatcher.CurrentDispatcher.BeginInvoke 和 BeginInvoke 之间的区别感到困惑
我有以下部分代码无效,UpdateCounts方法中的代码被忽略:
private void Start()
{
_testResults = new TestResults(ModelNameTextBox.Text);
_timer = new System.Threading.Timer(UpdateCounts, null, 0, 500);
}
private void UpdateCounts(object info)
{
Dispatcher.CurrentDispatcher.BeginInvoke(new Action(() =>
{
PassCountLabel.Text = _testResults.PassedCount.ToString();
RequestCountLabel.Text = _testResults.RequestedCount.ToString();
}));
}
但是一旦删除Dispatcher.CurrentDispatcher,它就可以正常工作:
private void UpdateCounts(object info)
{
BeginInvoke(new Action(() =>
{
PassCountLabel.Text = _testResults.PassedCount.ToString();
RequestCountLabel.Text = _testResults.RequestedCount.ToString();
}));
}
最佳答案
Dispatcher.CurrentDispatcher.BeginInvoke 仅在您从UI线程调用时才有效,否则,它将调用当前线程。
您必须使用 Application.Current.Dispatcher 来调用UI线程。
关于c# - 为什么使用Dispatcher.CurrentDispatcher.BeginInvoke不会更新我的GUI,但是使用BeginInvoke呢?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46628832/