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); }