在Win 8 App 中使用Thread.Sleep

摘要:在Win 8 App 中使用Thread.Sleep

在Windows 8 App 中要使用 Sleep 並非以前常用的方法

System.Threading.Thread.Sleep(ms)

而是使用System.Threading.ManualResetEvent

 

new System.Threading.ManualResetEvent(false).WaitOne(ms); 

參考連接

http://mikaelkoskinen.net/post/ThreadSleep-in-WinRT.aspx