首页 > 代码库 > MFC在static text中动态显示系统时间

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

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中动态显示系统时间