码迷,mamicode.com
首页 > 编程语言 > 详细

MFC在static text中动态显示系统时间

时间:2014-11-06 09:25:15      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   for   sp   on   log   cti   代码   

1.添加static text ,ID为IDC_ShowTime

2,在OnInitDialog()中


       SetTimer(1,1000,NULL);         //启动定时器

3.添加WM_TIMER消息处理函数,ontimer中添加如下代码:
       CString strTime;
       CTime tm;
       tm=CTime::GetCurrentTime();        
        strTime=tm.Format("%Y-%m-%d %H:%M:%S");
       SetDlgItemText(IDC_ShowTime,strTime);        //显示系统时间

MFC在static text中动态显示系统时间

标签:style   color   ar   for   sp   on   log   cti   代码   

原文地址:http://blog.csdn.net/hanshuning/article/details/40836539

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!