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); //显示系统时间
时间: 2024-10-11 21:15:00