示例#1
0
 internal void BackgroundUpdateCompletionDescription()
 {
     completionDispatcher.Invoke(new Action(delegate()
     {
         try
         {
             completionWindow.UpdateCurrentItemDescription();
         }
         catch (Exception exception)
         {
             MessageBox.Show(exception.ToString(), "Error");
         }
     }));
 }
示例#2
0
 internal void BackgroundUpdateCompletionDescription()
 {
     _completionWindow.UpdateCurrentItemDescription();
 }