c#Forms Timer不会停止

时间:2013-06-15 12:57:08

标签: c#

我有一个WinForms应用程序,每秒增加一次计时器并更新标签的文本。 第二个计时器每20毫秒递增一次,以查找最近的鼠标移动并将当前坐标写入另一个标签。

当程序收到Alt + F4时,我实例化“MessageBoxQueryClose”,要求用户关闭或恢复操作。在显示MessageBox之前,我想停下来 发射后每秒一次的计时器,并在用户说“请继续”以重新启用它之后。

这是我观察到一些“奇怪”行为的地方:每秒一次的计时器再次发射 当MessageBox打开时,移动鼠标。

表单代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Globalization;


namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private bool _altF4Pressed = false;

        private void Form1_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.Alt && e.KeyCode == Keys.F4)
                _altF4Pressed = true;
        }

        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            // show the MessageBox asking the user if the programm should really exit
            MessageBoxQueryClose msgBoxQC = new MessageBoxQueryClose();
            msgBoxQC.QueryClose(ref _altF4Pressed, ref timer2, ref e);
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            timer1.Interval = 20;
            timer1.Enabled = true;

            timer2.Interval = 1000;
            timer2.Enabled = true;
        }


        bool toggle = false;

        private void timer2_Tick(object sender, EventArgs e)
        {
            if (toggle)
                label1.Text = "tick";
            else
                label1.Text = "tack";

            toggle = !toggle;
        }


        Point oldPos, newPos;

        private void timer1_Tick(object sender, EventArgs e)
        {
            newPos = Cursor.Position;
            label2.Text = Convert.ToString(newPos.X + ", " + newPos.Y);

            CompareCursorPosition();

            oldPos = newPos; 
        }

        private void CompareCursorPosition()
        {
            if (oldPos != newPos)
                Display_ResetFallback();
        }

        private void Display_ResetFallback()
        {
            timer2.Stop();
            timer2.Start();
        }
    }
}

MessageBoxQueryClose的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;


namespace WindowsFormsApplication1
{
    class MessageBoxQueryClose
    {
        public void QueryClose(ref bool _altF4Pressed, ref Timer timer, ref FormClosingEventArgs e) 
        {
            if (_altF4Pressed)
            {
                // first, disable timer2 to stop Form1.label1 from being updated 
                timer.Enabled = false;

                if (e.CloseReason == CloseReason.UserClosing)
                {
                    DialogResult res;

                    res = MessageBox.Show("Close program ?", "timers",
                                MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation);


                    if (res == DialogResult.Yes)
                    {
                        return;
                    }

                    // if program execution shall continue, re-enable timer2
                    timer.Enabled = true;
                }
                e.Cancel = true;
                _altF4Pressed = false;
            }
        }
    }
}

我有直觉感觉我的问题是关于计时器和线程,但我最近才开始使用.Net,所以我们非常感谢任何见解。

克里斯

2 个答案:

答案 0 :(得分:3)

您的timer1_Tick事件调用CompareCursorPosition(),它调用Display_ResetFallback(),再次启动timer2

所以你在QueryClose()中停止timer2,然后timer1_Tick事件触发,再次启动timer2

您可以修改Display_ResetFallback()以确保您的计时器仅在当前正在运行时重新启动:

if (timer2.Enabled)
{
    timer2.Stop();
    timer2.Start();
}

作为旁注,我可能完全摆脱了MessageBoxQueryClose类,只是相应地修改了FormClosing事件:

if (e.CloseReason == CloseReason.UserClosing)
{
    timer2.Stop();

    if (MessageBox.Show("Close program ?", "timers", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation) == DialogResult.No)
    {
        e.Cancel = true;
        timer2.Start();
    }
}

答案 1 :(得分:0)

你可以试试这个......

        timer1.Stop();
        label1.Text = timer1.Enabled == false ?"timer disabled":"timer enabled";
        if (MessageBox.Show("Close program ?", "timers",
              MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation) == DialogResult.OK)
        {
            //do stuff here if you want
        }
        timer1.Start();
        label1.Text = timer1.Enabled == false ? "timer disabled" : "timer enabled";

只需将这些标签文字放入即可查看。 这个编辑你不需要上课

编辑:

public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private bool _altF4Pressed = false;

        private void Form1_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.Alt && e.KeyCode == Keys.F4)
                _altF4Pressed = true;
        }

        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            //show the MessageBox asking the user if the programm should really exit
            //MessageBoxQueryClose msgBoxQC = new MessageBoxQueryClose();
            //msgBoxQC.QueryClose(ref _altF4Pressed, ref timer2, ref e);

            if (_altF4Pressed)
            {
                this.timer2.Stop();
                if (MessageBox.Show("Close program ?", "timers",
                                MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation) == DialogResult.No)
                {
                    e.Cancel = true;
                    this.timer2.Start();
                }

            }
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            timer1.Interval = 20;
            timer1.Enabled = true;

            timer2.Interval = 1000;
            timer2.Enabled = true;
        }


        bool toggle = false;

        private void timer2_Tick(object sender, EventArgs e)
        {
            if (toggle)
                label1.Text = "tick";
            else
                label1.Text = "tack";

            toggle = !toggle;
        }


        //Point oldPos, newPos;

        private void timer1_Tick(object sender, EventArgs e)
        {

            label2.Text = MousePosition.X.ToString() + " , " + MousePosition.Y.ToString();
        }

        //private void CompareCursorPosition()
        //{
        //    if (oldPos != newPos)
        //        Display_ResetFallback();
        //}

        //private void Display_ResetFallback()
        //{
        //    timer2.Stop();
        //    timer2.Start();
        //}
    }

把我的第一篇文章放在你的代码中....它停止了我,不需要额外的类,删除2点和2方法(Display_ResetFallback和CompareCursorPosition),但你可以使用它们(2点变量)如果你愿意,在timer1里面做你的检查。