CWindow::SetRedraw
通过发送 WM_SETREDRAW 信息设置或清除重绘标志到窗口。
void SetRedraw(
BOOL bRedraw = TRUE
) throw();
参数
- bRedraw
[in]用于指定重绘标志的状态。 如果 TRUE (默认值),就设置了标志;如果设置为,则清除标志 FALSE。
备注
调用 SetRedraw 允许更改都重绘或阻止重新绘制的更改。
示例
//The following example attaches an HWND to the CWindow object and
//calls CWindow::SetRedraw() to set and reset the redraw flag
CWindow myWindow;
myWindow.Attach(hWnd);
myWindow.SetRedraw(); //sets the redraw flag to TRUE
//
//
myWindow.SetRedraw(FALSE); //sets the redraw flag to FALSE
要求
Header: atlwin.h