GetClientRect得到的是客户区的大小,也就是说这样得到的左上角永远是(0,0)
GetWindowRect 是窗口相对于整个屏幕的坐标,屏幕左上点为0,0
[@more@]The GetClientRect function retrieves the coordinates of a window's client area. The client coordinates specify the upper-left and lower-right corners of the client area. Because client coordinates are relative to the upper-left corner of a window's client area, the coordinates of the upper-left corner are (0,0).
The GetWindowRect function retrieves the dimensions of the bounding rectangle of the specified window. The dimensions are given in screen coordinates that are relative to the upper-left corner of the screen.
相互转化用ScreenToClient 或者 ClientToScreen
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/310974/viewspace-880578/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/310974/viewspace-880578/
本文详细解释了GetClientRect和GetWindowRect两个函数的区别及用途。GetClientRect用于获取窗口客户区的坐标,其左上角坐标始终为(0,0)。而GetWindowRect则返回窗口相对于屏幕左上角的坐标。此外,还介绍了如何使用ScreenToClient和ClientToScreen函数在这两种坐标之间进行转换。
1667

被折叠的 条评论
为什么被折叠?



