/* The GetCursorPos function retrieves the cursor's position, in screen coordinates. */
      BOOL GetCursorPos(
                   LPPOINT &point
                    );

/* The WindowFromPoint function retrieves a handle to the window that contains the specified point. */
      HWND WindowFromPoint(
                           POINT point
                          );

/*The GetWindow function retrieves a handle to a window that has the specified relationship ( or owner) to the specified window. */
      HWND GetWindow(
                     HWND hWnd,
                     UINT    uCmd                    //通过把uCmd代码设置为GW_HWNDNEXT来获取兄弟窗口的句柄
                    );    

相关文章:

  • 2021-05-15
  • 2021-12-27
  • 2021-12-12
  • 2021-12-10
猜你喜欢
  • 2021-12-03
  • 2021-10-03
  • 2022-12-23
  • 2022-12-23
  • 2022-01-31
  • 2022-01-08
相关资源
相似解决方案