Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: rnort on Sep 7th, 2012  |  syntax: C#  |  size: 0.24 KB  |  hits: 26  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.  private void ShowMessage(String message)
  2.         {
  3.          
  4.             Dispatcher.Invoke((ThreadStart)delegate
  5.             {
  6.                 ChatArea.Document.Blocks.Add(new Paragraph(new Run(message)));
  7.             });
  8.  
  9.          
  10.         }