CWnd::GetDlgItemCWnd*GetDlgItem(intnID)const;voidCWnd::GetDlgItem(intnID,HWND*phWnd)const;/*
说明——
参数 nID:接收消息的控件的标识;
参数phWnd:子类窗口的指针;
返回值:标识所标记的控件(或子类窗口)的指针;
*///Example
// Uses GetDlgItem to return a pointer to a user interface control.
CEdit*pBoxOne;pBoxOne=(CEdit*)GetDlgItem(IDC_EDIT1);GotoDlgCtrl(pBoxOne);
1
2
3
4
5
6
7
8
9
10
11
WindowsSDKHWNDGetDlgItem(HWNDhDlg,// handle to dialog box
intnIDDlgItem// control identifier
);/*
参数说明:
hDlg:标识含有控件的对话框。
nlDDlgltem:指定将被检索的控件标识符。
返回值:如果函数调用成功则返回值为给定控件的窗口句柄。如果函数调用失败,则返回值为NULL,表示为一个无效的对话框句柄或一个不存在的控件。若想获得更多错误信息,请调用GetLastError函数。
*/