Example #1
0
 public void ShowNotice(string message, int wiimoteID)
 {
     Dispatcher.BeginInvoke(new Action(delegate()
     {
         OverlayNotice notice = new OverlayNotice(message, wiimoteID, 3000);
         this.noticeStack.Children.Add(notice);
     }), null);
 }
Example #2
0
 public void ShowNotice(string message, int wiimoteID)
 {
     Dispatcher.BeginInvoke(new Action(delegate()
     {
         OverlayNotice notice = new OverlayNotice(message, wiimoteID, 3000);
         this.noticeStack.Children.Add(notice);
     }), null);
 }