Ejemplo n.º 1
0
        internal static void NotifyResponseRecieved()
        {
            lock (formLocker)
                {
                if (_currentForm == null)
                    {
                    return;
                    }

                if (_currentForm.InvokeRequired)
                    {
                    _currentForm.Invoke(new Action(NotifyResponseRecieved));
                    return;
                    }

                _currentForm.Close();
                _currentForm = null;
                }
        }
Ejemplo n.º 2
0
 internal static void WaitForServerResponse()
 {
     currentForm = new RemoteCallDialog();
     currentForm.ShowDialog();
 }
Ejemplo n.º 3
0
 internal static void WaitForServerResponse()
 {
     currentForm = new RemoteCallDialog();
     currentForm.ShowDialog();
 }