鱼C论坛

 找回密码
 立即注册
查看: 599|回复: 1

Timer无法运行

[复制链接]
发表于 2022-11-18 17:03:13 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
timer没有启动怎么回事?
编译没有发现问题
namespace WinFormsApp_Timer01
{
    public partial class Form1 : Form
    {
        //定义全局变量
        int iCount;
        int iCountMax;

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            int i = 1;
            for (i = 1; i<=100; i++)
            {
                comboBox1.Items.Add(i.ToString() + "秒");
                lblTimRemain.Text = iCountMax.ToString();
            }
        }

        private void btn_Click(object sender, EventArgs e)
        {
            string strTimeItemText = comboBox1.Text;
            int iTimeItemTextLen = comboBox1.Text.Length;
            string strTimeItemTextNew = comboBox1.Text.Remove(iTimeItemTextLen - 1, 1);
            iCountMax = Convert.ToUInt16(strTimeItemTextNew);
            iCount = iCountMax;
            progressBar1.Maximum = iCountMax;
            lblTimRemain.Text = iCountMax.ToString() + " 秒";
            timer1.Start();
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            progressBar1.Value = iCount;
            lblTimRemain.Text = iCount.ToString() + " 秒";
            iCount--;
            if (iCount<=0)
            {
                timer1.Stop();
                MessageBox.Show("时间到达");
            }

        }
    }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-11-18 23:49:40 | 显示全部楼层
enable 没有?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-11 02:33

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表