摘要: https://www.itdaan.com/blog/2017/07/05/ef75247e8d1360ece5c5e1b8e0a84f2.html C#的WPF中使用多线程导致界面假死问题的解决 该文章解释并解决了为什么线程和委托的调用无法解决界面假死问题。 阅读全文
posted @ 2021-06-11 19:19 三竺 阅读(55) 评论(0) 推荐(0)
摘要: //延时程序 private static void Delay(int millisecond) { int start = Environment.TickCount; while (Math.Abs(Environment.TickCount - start) < millisecond) { 阅读全文
posted @ 2021-06-11 14:38 三竺 阅读(103) 评论(0) 推荐(0)