能力值:
( LV8,RANK:130 )
|
-
-
2 楼
BOOL GetWindowRect(
HWND hWnd, // handle to window
LPRECT lpRect // address of structure for window coordinates
);
|
能力值:
(RANK:10 )
|
-
-
3 楼
bottom-top?
right-left?
这个宽度和高度包括标题栏吗?
|
能力值:
( LV8,RANK:130 )
|
-
-
4 楼
如果你想得到客户区的大小就用
BOOL GetClientRect(
HWND hWnd, // handle to window
LPRECT lpRect // address of structure for client coordinates
);
这个没有那些标题蓝和工具蓝的
如果想包括他们
就用
BOOL GetWindowRect(
HWND hWnd, // handle to window
LPRECT lpRect // address of structure for window coordinates
);
|
能力值:
(RANK:10 )
|
-
-
5 楼
thx!
|
|
|