Поделиться через


CWnd::FindWindowEx

Retrieves the window object whose class name and window name match the specified strings.

static CWnd* FindWindowEx(
   HWND hwndParent,
   HWND hwndChildAfter,
   LPCTSTR lpszClass,
   LPCTSTR lpszWindow
);

Параметры

  • hwndParent
    Handle to the parent window whose child windows are to be searched.

  • hwndChildAfter
    Handle to a child window. The search begins with the next child window in the Z order. The child window must be a direct child window of hwndParent, not just a descendant window.

  • lpszClass
    Pointer to a null-terminated string that specifies the class name or a class atom created by a previous call to the RegisterClass or RegisterClassEx.

  • lpszWindow
    Pointer to a null-terminated string that specifies the window name (the window's title). If this parameter is NULL, all window names match.

Возвращаемое значение

If the function succeeds, the return value is a pointer to the window object having the specified class and window names. If the function fails, the return value is NULL.

Заметки

This member function emulates the functionality of the function FindWindowEx, as described in the Windows SDK.

Требования

Header: afxwin.h

См. также

Основные понятия

CWnd Class

CWnd Members

Hierarchy Chart

CWnd::FindWindow