void dictionary_Notification(object sender, NotificationEventArgs e)
 {
     Dispatcher.Invoke(new Action(delegate()
     {
         listBox1.Items.Add(e.Value.ToString());
     }));
 }
Ejemplo n.º 2
0
 void IMessageController.Notified(NotificationEventArgs args)
 {
     if (this.IsAlive)
         CastTargetController.Notified(args);
 }