明次 发表于 2011-7-8 13:36:12

C++获取当前鼠标位置

#include <iostream>
#include <windows.h>
using namespace std;


int main()
{
SetConsoleTitle("获取当前鼠标位置"); //设置标题
    POINT p; //定义一个点
    while (true)
    {
      if (GetCursorPos(&p)) //如果返回一个true,则…
      {
            cout << "当前鼠标位置:" << p.x << "," << p.y;
            Sleep(100);
            system("cls");
      }
    }
}

decall 发表于 2014-9-23 09:17:33

学习一下,兴许能用到!

jmgsdz 发表于 2014-12-22 19:17:00

学习学习                                                         
页: [1]
查看完整版本: C++获取当前鼠标位置