mfc获取屏幕坐标
时间: 2023-08-18 20:07:58 浏览: 206
屏幕坐标获取
5星 · 资源好评率100%
可以使用以下代码获取当前鼠标指针的屏幕坐标:
```c++
CPoint point;
GetCursorPos(&point);
```
如果需要在MFC窗口中获取鼠标指针的屏幕坐标,可以使用以下代码:
```c++
CPoint point;
GetCursorPos(&point);
ScreenToClient(&point);
```
其中,`ScreenToClient`函数将屏幕坐标转换为客户区坐标。
阅读全文