博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【原】测试Application.Idle
阅读量:5280 次
发布时间:2019-06-14

本文共 1293 字,大约阅读时间需要 4 分钟。

 最近在DoNet项目中需要用到Application.Idle功能函数,平时基本没用过。今天写点代码测试一下,一目了然。

    Application.Idle的英文描述为:“Occurs when the application finished processing and is about to enter idle state.”,字面意思 当应用程序处于空闲状态时执行相应代码。
    还是上代码,。

 

/* Wrote by jamesking 2010-10-17. Mail:jamesking.chao@gmail.com */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;//空闲期间执行的次数        public Form1()        {            InitializeComponent();        }        ///         /// 时间处理,获取最新的系统时间在文本框中显示        ///         private void ProcessTime(object sender, EventArgs e)        {            textBox1.Text = System.DateTime.Now.ToString();            excuteTimes++;            if (excuteTimes == 9)            {                Application.Idle -= new EventHandler(ProcessTime);                MessageBox.Show("已经在CPU空闲期间执行了10次!");            }        }        ///         /// 按扭,获取时间        ///         private void btnGetTime_Click(object sender, EventArgs e)        {            Application.Idle += new EventHandler(ProcessTime);        }    }}

 

 

转载于:https://www.cnblogs.com/fitel/archive/2012/10/22/2733945.html

你可能感兴趣的文章
composer 报 zlib_decode(): data error
查看>>
hdu 3938 并查集
查看>>
《深入分析Java Web技术内幕》读书笔记之JVM内存管理
查看>>
python之GIL release (I/O open(file) socket time.sleep)
查看>>
软件开发与模型
查看>>
161017、SQL必备知识点
查看>>
kill新号专题
查看>>
MVC学习系列——Model验证扩展
查看>>
字符串
查看>>
vue2.x directive - 限制input只能输入正整数
查看>>
实现MyLinkedList类深入理解LinkedList
查看>>
自定义返回模型
查看>>
C#.NET 大型通用信息化系统集成快速开发平台 4.1 版本 - 客户端多网络支持
查看>>
HDU 4122
查看>>
Suite3.4.7和Keil u3自带fx2.h、fx2regs.h文件的异同
查看>>
打飞机游戏【来源于Crossin的编程教室 http://chuansong.me/account/crossincode 】
查看>>
[LeetCode] Merge Intervals
查看>>
【翻译自mos文章】当点击完 finishbutton后,dbca 或者dbua hang住
查看>>
Linux编程简介——gcc
查看>>
2019年春季学期第四周作业
查看>>