C++ MFC 计时器(OnTimer)的用法实例

1、”点击“跳转界面的代码:

// TODO:  在此添加控件通知处理程序代码
 MyLog td;
 td.DoModal();

2、点击后,在另一个界面中显示如下界面,文本框中的数字依次升高

(1)在界面中添加文本框,计时器

在窗口中右键

(2)添加文本框的成员变量,初始化函数

声明:virtual BOOL OnInitDialog();

实现:

BOOL MyLog::OnInitDialog()
{
 
 CDialogEx::OnInitDialog();
 CWnd *pnd = GetDlgItem(IDD_DIALOG1);    
 SetTimer(1, 500, NULL);
 return true;
}

(3)在系统生成的计时器中填写:

参考的网址:

http://www.jizhuomi.com/software/232.html


http://jingyan.baidu.com/article/fc07f9891fba6712ffe51997.html




















你可能感兴趣的:(C++ MFC 计时器(OnTimer)的用法实例)