Cornerstone.GUI.Dialogs.ProgressPopup.ShowDialogDelayed C# (CSharp) Method

ShowDialogDelayed() public method

public ShowDialogDelayed ( int delay ) : void
delay int
return void
        public void ShowDialogDelayed(int delay)
        {
            delayTimer = new System.Windows.Forms.Timer();
            delayTimer.Interval = delay;
            delayTimer.Tick += new EventHandler(delayTimer_Tick);
            delayTimer.Start();

            startProcessing();
        }