码迷,mamicode.com
首页 > 移动开发 > 详细

winform 使用Thread.Sleep界面卡死 使用 Application.DoEvents 方法防止UI假死

时间:2021-07-01 16:29:40      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:turn   避免   cond   info   事件   env   second   date   ica   

      #region 毫秒延时 界面不会卡死
        public static void Delay(int mm)
        {
            DateTime current = DateTime.Now;
            while (current.AddMilliseconds(mm) > DateTime.Now)
            {
                Application.DoEvents();
            }
            return;
        }
        #endregion

 

Application.DoEvents()的作用:处理所有的当前在消息队列中的Windows消息
其实doEnvents很简单,就是暂停一下当前模块Code,好让你程序可以响应其它事件、消息……
响应完其它事之后又回去继续执行刚才的Code (允许窗体在忙时响应 UI 输入)

 

避免使用 Thread.Sleep

winform 使用Thread.Sleep界面卡死 使用 Application.DoEvents 方法防止UI假死

标签:turn   避免   cond   info   事件   env   second   date   ica   

原文地址:https://www.cnblogs.com/shy1766IT/p/14956130.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!