acedGetAcadTextCmdLine(),枚举CAD命令行的子窗口

CWnd *wTextCmdLine = acedGetAcadTextCmdLine(); 

if (wTextCmdLine != NULL)

 {

 ::EnumChildWindows(wTextCmdLine->m_hWnd,EnumChildProc,0); 

}

 BOOL CALLBACK EnumChildProc(HWND hWnd,LPARAM lParam)

{

WCHAR lpWinTitle[256];

 ::GetWindowText(hWnd,lpWinTitle,256-1); 

CString m_strTitle;

m_strTitle.Format(_T("%s"),lpWinTitle);

MessageBox(NULL,m_strTitle,_T("cwnd"),MB_OK);

WCHAR lpWinTitle2[256];

 ::GetClassName(hWnd,lpWinTitle2,MAX_PATH-1);

MessageBox(NULL,lpWinTitle2,_T("cwnd"),MB_OK);

/*命令行会有三个子窗口*/return true;

}

猜你喜欢

转载自blog.csdn.net/jangdong/article/details/22940277