我们需要使用SynchronizationContext通过Send返回一个值(特别是一个MessageBox DialogResult)(我们不希望通过“Post”来传递)。只是不确定语法。
MessageBox出现在主窗口后面的问题被认为是由于无法轻松访问IWin32Window主窗体值而引起的...我们正在使用它,但是老实说,我对此感到不舒服。

 DialogResult dr;
 SynchronizationContext synchContext;

 //in main forms constructor
  {
       ...
       synchContext = AsyncOperationManager.SynchronizationContext;
  }

 void workerThread( object obj, DoWorkEventArgs args)
 {

   // SynchronizationContext passed into worker thread via args
   sc.Send( delegate {dr = MessageBoxEx.Show( "Yes or no?", "Continue?",   MessageBoxButtons.OKCancel, MessageBoxIcon.Question );},null);
 }

最佳答案

您可以将object传递到传递给Send的委托(delegate)中。

所以这是我会做的:

class DialogResultReference
{
    internal DialogResult DialogResult { get; set; }
}
class YourClass
{
    static void ShowMessageBox(object dialogResultReference)
    {
        var drr = (DialogResultReference)dialogResultReference;
        drr.DialogResult = MessageBoxEx.Show("Yes or no?", "Continue?",   MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
    }

    // ... You just remove dr from the class
    SynchronizationContext synchContext;

    //in main forms constructor
    {
        ...
        synchContext = AsyncOperationManager.SynchronizationContext;
    }

    void workerThread(object obj, DoWorkEventArgs args)
    {
        var drr = new DialogResultReference();
        sc.Send(YourClass.ShowMessageBox, drr);
    }
}

关于c# - 是否可以返回带有同步上下文.send的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13260891/

10-13 06:21