コード例 #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();
 }