摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Linq; 5 using System.Runtime.InteropServices.WindowsRuntime; 6 using System.Threading.Tasks; 7 using Windo... 阅读全文
posted @ 2017-04-25 19:50 韵切 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 当我注意到WinRT缺少Thread.Sleep功能时,我感到惊讶。幸运的是,MSDN论坛提供了以下代码段,它很好地提供了相同的功能: 1 static void Sleep(int ms) 2 { 3 new System.Threading.ManualResetEvent(false).Wai 阅读全文
posted @ 2017-04-25 16:37 韵切 阅读(319) 评论(0) 推荐(0) 编辑