Beispiel #1
0
        private void ShowNotificationThread()
        {
            while (_notifFakeForm == null)
            {
                Thread.Sleep(1);
            }
            ShowNotific showNo = new ShowNotific(_notifFakeForm.ShowNotif);

            _notifFakeForm.Invoke(showNo, new Object[] { _notificationText });
        }
 private void ShowNotificationThread()
 {
     while (_notifFakeForm == null) Thread.Sleep(1);
     ShowNotific showNo = new ShowNotific(_notifFakeForm.ShowNotif);
     _notifFakeForm.Invoke(showNo, new Object[] { _notificationText });
 }