在OnDraw()函数中,利用for循环更新SetWindowText,为什么CEdit不能实时显示
如题:
在OnDraw()函数中,利用for循环更新SetWindowText,为什么CEdit不能实时显示
代码如下:
void CMy1View::OnDraw(CDC* /*pDC*/)
{
CMy1Doc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
if (!pDoc)
return;
// TODO: 在此处为本机数据添加绘制代码
CString str;
for(int i=0;i<100;i++) {
str.Format(_T("%d"), i);
ENumber->SetWindowTextW(LPCTSTR(str));
Sleep(1000);
}
}