예제 #1
0
파일: Statistic.cs 프로젝트: TopMouse72/BU1
 public static void WorkFlowTimerStart(bool start)
 {
     if (start)
     {
         if (!timer.IsCounting)
         {
             timer.StartTimer(60000, 60000);
         }
     }
     else
     {
         timer.StopTimer();
         Save();
     }
 }
예제 #2
0
 public override void StopHandler(BaseClass sender, StateEventArgs e)
 {
     base.StopHandler(sender, e);
     timer.StopTimer();
 }
예제 #3
0
파일: Common.cs 프로젝트: TopMouse72/BU1
 public static void CommonRelease()
 {
     timer.StopTimer();
     CloseCDIVision();
 }
예제 #4
0
 public override void StopHandler(BaseClass sender, StateEventArgs e)
 {
     base.StopHandler(sender, e);
     BaseForm.SetControlText(cellTextBoxWorkFlowStart, "无");
     timer.StopTimer();
 }