private void AllDownloadComplete()
        {
            LogMan.Instance.Log(Resources.InfoAllDownloadOk);

            if (InvokeRequired)
            {
                //EnableInputCallback d = new EnableInputCallback(EnableInput);
                ChangeUIStatusCallBack d = ChangeUIStatus;
                //this.Invoke(d);
                Invoke(d, UIStatus.StandBy);
            }
            else
            {
                //EnableInput();
                ChangeUIStatus(UIStatus.StandBy);
            }
        }
Beispiel #2
0
        private void AllDownloadComplete()
        {
            LogMan.Instance.Log(Properties.Resources.InfoAllDownloadOk);

            if (this.InvokeRequired)
            {
                //EnableInputCallback d = new EnableInputCallback(EnableInput);
                ChangeUIStatusCallBack d = new ChangeUIStatusCallBack(ChangeUIStatus);
                //this.Invoke(d);
                this.Invoke(d, new object[] { UIStatus.StandBy });
            }
            else
            {
                //EnableInput();
                ChangeUIStatus(UIStatus.StandBy);
            }
        }
 private void AllDownloadComplete()
 {
     LogMan.Instance.Log(Properties.Resources.InfoAllDownloadOk);
     
     if (this.InvokeRequired)
     {
         //EnableInputCallback d = new EnableInputCallback(EnableInput);
         ChangeUIStatusCallBack d = new ChangeUIStatusCallBack(ChangeUIStatus);
         //this.Invoke(d);
         this.Invoke(d, new object[] {UIStatus.StandBy});
     }
     else
     {
         //EnableInput();
         ChangeUIStatus(UIStatus.StandBy);
     }
 }