获取MFC对话框的所有控件ID
Get all control IDs of MFC dialog box
有什么方法可以得到当前MFC对话框的所有控件ID吗? (更改所有控件的 WindowText)
你可以这样做:
for(CWnd* pWnd = GetWindow(GW_CHILD); pWnd != NULL; pWnd = pWnd->GetWindow(GW_HWNDNEXT))
{
pWnd->SetWindowText(_T("MyText"));
}
当然,如果需要,您可以查看ID或控件类型id。
有什么方法可以得到当前MFC对话框的所有控件ID吗? (更改所有控件的 WindowText)
你可以这样做:
for(CWnd* pWnd = GetWindow(GW_CHILD); pWnd != NULL; pWnd = pWnd->GetWindow(GW_HWNDNEXT))
{
pWnd->SetWindowText(_T("MyText"));
}
当然,如果需要,您可以查看ID或控件类型id。