0

我遇到了线程同步的问题。我的演示者分析了一些传感器并更新了 UI 表单。我将更新代码移动到单独的线程中。它工作正常,但是如果用户在更新视图时停止演示者,软件就会冻结 - 我发现它发生在 view.UpdateUI 工作时(它只是使用 Invoke 设置了一些标签)。我的问题在哪里?我使用紧凑型框架 3.5 和 Windows CE 5

using System.Threading;

class MyPresenter
{
  UserControl view;

  private Thread thread;
  private ManualResetEvent cancelEvent;

  public void Start()
  {
    cancelEvent = new ManualResetEvent(false);
    thread = new Thread(UpdateView) { IsBackground = true };
    thread.Start();
  }

  public void Stop()
  {
    if (thread != null) {
      cancelEvent.Set();
      thread.Join();
      thread = null;
    }
  }

  private void UpdateView()
  {
    while (cancelEvent.WaitOne(1000, false) == false) {
      // analyze something
      view.UpdateUI(...);
    }
  }
}
4

2 回答 2

1

不要直接从工作线程中更新 UI 线程。请改用委托。例如:如何从 C# 中的另一个线程更新 GUI?

于 2013-02-04T15:27:30.233 回答
0

如果您的后台线程被阻止调用您的 UI(通过Control.Invoke),然后您的 UI 线程被阻止调用您的 Stop 方法,thread.Join()那么您将获得一个经典的致命拥抱。您应该摆脱加入,而是让后台线程在停止完成时引发最后一个事件/通知,以便 UI 可以处理该事件(启用/禁用按钮等)。

于 2013-02-04T14:36:22.817 回答