用户
 找回密码
 立即注册
定时任务可以用timer实现,参考https://www.smobiler.com/SmobilerDemo/timer.aspx
以下代码为3秒后跳转窗口
        public int i = 0;
        private void timer1_Tick(object sender, EventArgs e)
        {
            i += 1;
            if (i ==3)
            {
               //跳转窗口
            }
        }
使用道具 举报 回复 支持 反对
发新帖
您需要登录后才可以回帖 登录 | 立即注册