增量/减量时间

时间:2018-04-08 18:14:55

标签: c# timer mouseevent increment decrement

问候我在尝试制作简单的事件调度程序时遇到了一些问题。 在下面的代码中,我的意图是增加或减少时间(当使用鼠标事件按下按钮时)。 然而,经过多次尝试,我无法弄清楚为什么我可以增加;但不是减少时间。 我尽可能地简化自己的编码,试图找到我的问题;但没有成功。我相信这一定是非常直接的;但是我在某个地方错过了一些观点。

    // Timer
    private Timer TmrCount;

    private int HH {get;set;}
    private int MM { get; set; }

    private Button CurrBtn = new Button();

    #region <Mouse Events>
    private void OnMouseDown(object sender, EventArgs e)
    {
        CurrBtn = (Button)sender;

        StartTimer();
    }

    private void OnMouseUp(object sender, MouseEventArgs e)
    {
        StopTimer();
    }
    #endregion

    #region <Timer>
    private void StartTimer()
    {
        if (TmrCount == null)
        {
            TmrCount = new Timer();
            TmrCount.Interval = 210;
            TmrCount.Tick += TmrCount_Tick;
            TmrCount.Start();
        }
    }

    private void TmrCount_Tick(object sender, EventArgs e)
    {
        Set_Time();
    }

    private void StopTimer()
    {
        if (TmrCount != null)
        {
            TmrCount.Stop();
            TmrCount.Dispose();
            TmrCount.Tick -= TmrCount_Tick;
            TmrCount = null;
        }
    }

    private void Set_Time()
    {
        switch (CurrBtn.Text)
        {
            case "+":
                // Condition Check (Increase HH))
                //if (HH == 23) { HH = default(int); }

                //Increase HH
                //if (HH < 23) { HH += 1; }

                while (HH < 23) { HH++; break; }
                break;

            case "-":
                // Condition Check (Decrease HH)
                //if (HH == default(int)) { HH = 23; }
                //if (HH == 0) { HH = 23; }

                // Decrease HH
                while (HH > 23) { HH-=1; break; }
                break;
        }

        // Set Hour Text into Label
        lbl_HH.Text = Convert.ToString(HH);
    }
    #endregion

有人能指出我正确的方向吗? 提前致谢

1 个答案:

答案 0 :(得分:1)

假设您的HH变量以值1开头,那么您应该以这种方式更改SetTime

int HH = 1;

private void Set_Time()
{
    switch (CurrBtn.Text)
    {
        case "+":
            // Condition Check (Increase HH))
            // Within a limit of 23
            while (HH < 23) { HH++; break; }
            break;

        case "-":
            // Condition Check (Decrease HH)
            // Decrease HH but don't allow it to be less than 0 
            while (HH >= 0) { HH-=1; break; }
            break;
    }

    // Set Hour Text into Label
    lbl_HH.Text = Convert.ToString(HH);
}

顺便说一句,在你处理了一个对象后,你甚至不应该尝试访问它来删除一个事件处理程序。

private void StopTimer()
{
    if (TmrCount != null)
    {
        TmrCount.Stop();
        TmrCount.Tick -= TmrCount_Tick;
        TmrCount.Dispose();
        TmrCount = null;
    }
}