MFC通過button控制編輯框是否顯示系統時間

weixin_33912246發表於2017-08-20

在dlg.h中public

bool flag;

在建構函式中

flag=false;

在button的生成函式中

if(flag)
{
flag=false;
//m_showtime.SetWindowText(_T(""));
GetDlgItem(IDC_ShowTime)->SetWindowTextW(_T(""));   //IDC_ShowTime為編輯框ID


}
else
{

CTime time = CTime::GetCurrentTime();
CString str;
str = time.Format(_T("%Y-%m-%d %H:%M:%S %A"));
//SetWindowTextW(str);//,THREAD_PRIORITY_IDLE);
GetDlgItem(IDC_ShowTime)->SetWindowTextW(str);


flag=true;


}

相關文章