溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

測試Application.Idle

發(fā)布時(shí)間:2020-06-26 21:58:18 來源:網(wǎng)絡(luò) 閱讀:521 作者:fitel 欄目:編程語言

    最近在DoNet項(xiàng)目中需要用到Application.Idle功能函數(shù),平時(shí)基本沒用過。今天寫點(diǎn)代碼測試一下,一目了然。
    Application.Idle的英文描述為:“Occurs when the application finished processing and is about to enter idle state.”,字面意思 當(dāng)應(yīng)用程序處于空閑狀態(tài)時(shí)執(zhí)行相應(yīng)代碼。
    還是上代碼,源代碼也可直接下載。

 

測試Application.Idle

  1. using System; 
  2. using System.Collections.Generic; 
  3. using System.ComponentModel; 
  4. using System.Data; 
  5. using System.Drawing; 
  6. using System.Linq; 
  7. using System.Text; 
  8. using System.Windows.Forms; 
  9.  
  10. namespace 測試Application.Idel 
  11.     public partial class Form1 : Form 
  12.     { 
  13.         private int excuteTimes = 0;//空閑期間執(zhí)行的次數(shù) 
  14.  
  15.         public Form1() 
  16.         { 
  17.             InitializeComponent(); 
  18.         } 
  19.  
  20.         /// <summary> 
  21.         /// 時(shí)間處理,獲取最新的系統(tǒng)時(shí)間在文本框中顯示 
  22.         /// </summary> 
  23.         private void ProcessTime(object sender, EventArgs e) 
  24.         { 
  25.             textBox1.Text = System.DateTime.Now.ToString(); 
  26.             excuteTimes++; 
  27.             if (excuteTimes == 9) 
  28.             { 
  29.                 Application.Idle -new EventHandler(ProcessTime); 
  30.                 MessageBox.Show("已經(jīng)在CPU空閑期間執(zhí)行了10次!"); 
  31.             } 
  32.         } 
  33.  
  34.         /// <summary> 
  35.         /// 按扭,獲取時(shí)間 
  36.         /// </summary> 
  37.         private void btnGetTime_Click(object sender, EventArgs e) 
  38.         { 
  39.             Application.Idle += new EventHandler(ProcessTime); 
  40.         } 
  41.     } 


 

 

附件:http://down.51cto.com/data/2361603
向AI問一下細(xì)節(jié)
推薦閱讀:
  1. MySQL測試
  2. PHP測試

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI