黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

C#實(shí)現(xiàn)系統(tǒng)休眠或靜止休眠的方法


封裝類

用于阻止系統(tǒng)休眠的c#類。以下是代碼注釋的解釋:

  • dllimport("kernel32.dll"):定義了一個(gè)api函數(shù),該函數(shù)在windows內(nèi)核中定義。
  • enum executionflag : uint:定義了一個(gè)枚舉類型,其中包含三個(gè)標(biāo)志,分別用于阻止系統(tǒng)休眠、關(guān)閉顯示器和繼續(xù)執(zhí)行。
  • preventsleep(bool includedisplay = false):這個(gè)方法用于阻止系統(tǒng)休眠,直到線程結(jié)束恢復(fù)休眠。如果includedisplay參數(shù)為true,則還會(huì)阻止關(guān)閉顯示器。
  • resotresleep():這個(gè)方法用于恢復(fù)系統(tǒng)休眠。

使用了kernel32.dll中的setthreadexecutionstate函數(shù)來阻止系統(tǒng)休眠。我們還定義了一個(gè)枚舉類型executionflag,用于指定阻止系統(tǒng)休眠的選項(xiàng)。我們可以使用setthreadexecutionstate函數(shù)來設(shè)置executionflag標(biāo)志,以防止系統(tǒng)休眠

class systemsleepmanagement
 {
     //定義api函數(shù)
     [dllimport("kernel32.dll")]
     static extern uint setthreadexecutionstate(executionflag flags);
     [flags]
     enum executionflag : uint
     {
         system = 0x00000001,
         display = 0x00000002,
         continus = 0x80000000,
     }
     ///       ///阻止系統(tǒng)休眠,直到線程結(jié)束恢復(fù)休眠
     ///       /// 是否阻止關(guān)閉顯示器
     public static void preventsleep(bool includedisplay = false)
     {
         if (includedisplay)
             setthreadexecutionstate(executionflag.system | executionflag.display | executionflag.continus);
         else
             setthreadexecutionstate(executionflag.system | executionflag.continus);
     }
     ///       ///恢復(fù)系統(tǒng)休眠
     ///       public static void resotresleep()
     {
         setthreadexecutionstate(executionflag.continus);
     }
     ///       ///重置系統(tǒng)休眠計(jì)時(shí)器
     ///       /// 是否阻止關(guān)閉顯示器
     public static void resetsleeptimer(bool includedisplay = false)
     {
         if (includedisplay)
             setthreadexecutionstate(executionflag.system | executionflag.display);
         else
             setthreadexecutionstate(executionflag.system);
     }
 }

因此,要實(shí)現(xiàn)下載時(shí)阻止程序休眠,則有兩種實(shí)現(xiàn)方式:

  • 下載期間起計(jì)時(shí)器定期執(zhí)行resetsleeptimer函數(shù)
  • 下載開始時(shí)執(zhí)行preventsleep函數(shù),下載結(jié)束后執(zhí)行resotresleep函數(shù)。
  • 另外,和阻止系統(tǒng)休眠類似,有的程序還需要有阻止屏保功能。

 

相關(guān)文章