共用方式為


CWnd::GetDlgItem

擷取指標到對話方塊或其他視窗的指定控制項或子視窗。

CWnd* GetDlgItem(
   int nID 
) const;
void GetDlgItem(
   int nID,
   HWND* phWnd
) const;

參數

  • nID
    指定要擷取的控制項或子視窗的識別項。

  • phWnd
    指標到子視窗。

傳回值

指標設定為指定的控制項或子視窗。 如果使用 nID 參數指定的整數 ID 的控制項不存在,這個值是 NULL

傳回的指標可能是暫時的,而且不應儲存供日後使用。

備註

傳回的指標通常會轉型為 nID確定控制項的型別。

範例

// uses GetDlgItem to return a pointer to a user interface control
CEdit* pBoxOne;
pBoxOne = (CEdit*)GetDlgItem(IDC_MYEDIT);
GotoDlgCtrl(pBoxOne);

需求

Header: afxwin.h

請參閱

參考

CWnd 類別

階層架構圖

CWnd::GetWindow

CWnd::GetDescendantWindow

CWnd::GetWindow

GetDlgItem