您好,登錄后才能下訂單哦!
最近在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)代碼。
還是上代碼,源代碼也可直接下載。
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace 測試Application.Idel
- {
- public partial class Form1 : Form
- {
- private int excuteTimes = 0;//空閑期間執(zhí)行的次數(shù)
- public Form1()
- {
- InitializeComponent();
- }
- /// <summary>
- /// 時(shí)間處理,獲取最新的系統(tǒng)時(shí)間在文本框中顯示
- /// </summary>
- private void ProcessTime(object sender, EventArgs e)
- {
- textBox1.Text = System.DateTime.Now.ToString();
- excuteTimes++;
- if (excuteTimes == 9)
- {
- Application.Idle -= new EventHandler(ProcessTime);
- MessageBox.Show("已經(jīng)在CPU空閑期間執(zhí)行了10次!");
- }
- }
- /// <summary>
- /// 按扭,獲取時(shí)間
- /// </summary>
- private void btnGetTime_Click(object sender, EventArgs e)
- {
- Application.Idle += new EventHandler(ProcessTime);
- }
- }
- }
免責(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)容。