示例#1
0
 private void StopConversation()
 {
     if (!Dispatcher.CheckAccess())
     {
         EndConversation d = StopConversation;
         Dispatcher.Invoke(d);
     }
     else
     {
         callForm.Close();
     }
 }
示例#2
0
 public void OnEndConversation()
 {
     EndConversation?.Invoke();
 }