如何在c#中让变量每秒减1

能来一段代码让我借鉴下么
2025-01-04 03:24:14
推荐回答(3个)
回答1:

    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            Timer t = new Timer();
            t.Interval = 1000;
            t.Tick += T;//注册时钟事件
            t.Enabled = true;
        }

        int n = 10000;

        //时钟事件引发重绘
        private void T(object o, EventArgs e)
        {
            n--;
            //显示在标题中
            Text = n.ToString();
        }

    }

回答2:

计时器

回答3:

定时器 就可以