135-1821-9792

VC遍历窗口上的控件

CWnd *pChild = this->GetWindow(GW_CHILD);
TCHAR szClassName[255] = { 0 };
while (pChild)
{
	//获得类名
	GetClassName(pChild->GetSafeHwnd(), szClassName, 255);
	CString strTemp=_T("");
	//清空控件
	pChild->SendMessage(WM_SETTEXT, 0, (LPARAM)(LPWSTR)(LPCWSTR)strTemp );
	pChild = pChild->GetWindow(GW_HWNDNEXT);
}

名称栏目:VC遍历窗口上的控件
本文路径:http://kswsj.com/article/psjoge.html

其他资讯



Copyright © 2009-2022 www.kswsj.com 成都快上网科技有限公司 版权所有 蜀ICP备19037934号