真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

c語言pos光標(biāo)函數(shù) c語言怎么讓光標(biāo)回到原點(diǎn)

C語言控制臺中怎么能獲取光標(biāo)當(dāng)前的坐標(biāo)值呢?

1、::GetCursorPos會獲取當(dāng)前鼠標(biāo)所在的點(diǎn),參數(shù)為POINT結(jié)構(gòu)變量的地址。

成都創(chuàng)新互聯(lián)公司2013年開創(chuàng)至今,先為湖濱等服務(wù)建站,湖濱等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為湖濱企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

2、如下面的例子:

#include stdio.h

#include afx.h

void main()

{

POINT point;

::GetCursorPos(point);

printf("x=%d,y=%d\n",point.x,point.y);

}

::GetCursorPos(point);將獲得的位置放入point變量中,通過point.x和point.y可以得知位置

C語言定位光標(biāo)

用Win32 API

SetConsoleCursorPosition是API中設(shè)置控制臺光標(biāo)位置的函數(shù)。

#include stdio.h

#include windows.h

int main(void)

{

HANDLE hOut;

COORD pos= {0,2}; /* 光標(biāo)的起始位(第1列,第3行) 0是第1列 2是第3行*/

hOut = GetStdHandle(STD_OUTPUT_HANDLE);

SetConsoleCursorPosition(hOut, pos);

printf("定位光標(biāo)位置(%d,%d)\n",pos.X,pos.Y);

return 0;

}

c語言GetCursorPos(&point)是什么來的?

這哪是c語言啊 這不是windows API嗎?

下個(gè)MSDN 索引下就行知道了,

GetCursorPos

The GetCursorPos function retrieves the cursor's position, in screen coordinates.

函數(shù)返回光標(biāo)在屏幕中的位置即光標(biāo)在屏幕中的坐標(biāo)

BOOL GetCursorPos(

LPPOINT lpPoint // cursor position

);


本文標(biāo)題:c語言pos光標(biāo)函數(shù) c語言怎么讓光標(biāo)回到原點(diǎn)
網(wǎng)頁地址:http://weahome.cn/article/doespee.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部