private void StartBotRotation()
 {
     if (this.RotateTimer.Enabled == false)
     {
         RotateTimer.Start();
     }
 }
Beispiel #2
0
        private void SetTimers()
        {
            timerWorkflow = new TimerWorkflow();

            RefreshTimer = new RefreshTimer(tabFormControl_Main);
            timerWorkflow.Add(RefreshTimer);

            RotateTimer = new RotateTimer(tabFormControl_Main);
            timerWorkflow.Add(RotateTimer);

            RunTimerWorkflowEngine();
        }