我有在 Visual C++(Windows 窗体应用程序)中获取光标位置的代码。但是我如何显示它?我使用了标签,但它并没有给我一个不断变化的光标位置。我的主要问题是在普通的 c++ 程序中,我在“main”函数中编写了无限 while 循环代码。我在哪里用 Visual C++(Windows 窗体应用程序)代码编写它?
if (!GetCursorPos(&point)) {
this->label4->Text = "An error occurred: ";
//cout << GetLastError();
} else {
x = point.x;
y = point.y;
}
Sleep(1000);
//system("cls");
this->label3->Text = Convert::ToString(x);
this->label4-> Text=Convert::ToString(y);