赞
踩
清除、重绘对话框上指定区域绘制的图形:
// 清空绘制区域
CRect rectDlg;
GetClientRect(rectDlg); // 获得窗体的大小
int pointWidth = rectDlg.Width(); // 获取窗体宽度
int pointHeight = rectDlg.Height(); // 获取窗体高度
RedrawWindow(CRect(0, 0, pointWidth, pointHeight)); // 重绘指定区域
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。