void GetWindowPos(HWND hWnd, int *x, int *y) { HWND hWndParent = GetParent(hWnd); POINT p = {0}; MapWindowPoints(hWnd, hWndParent, &p, 1); ...
確定! 回上一頁