搜索
编程论坛
→
.NET专区
→
『 C# 论坛 』
→ 获取屏幕当前坐标原来很简单
标题:
获取屏幕当前坐标原来很简单
只看楼主
heyu52
等 级:
新手上路
帖 子:13
专家分:0
注 册:2008-4-11
楼主
问题点数:0 回复次数:0
获取屏幕当前坐标原来很简单
[DllImport("User32.dll")]
public static extern int GetCursorPos(out Point point);
public static Point ShowPoint()
{
Point showPoint = new Point();
GetCursorPos(out showPoint);
return showPoint;
}
搜索更多相关主题的帖子:
坐标
屏幕
Point
public
获取
2008-04-12 22:14
1
1/1页
1
参与讨论请移步原网站贴子:
https://bbs.bccn.net/thread-208693-1-1.html
关于我们
|
广告合作
|
编程中国
|
清除Cookies
|
TOP
|
手机版
编程中国
版权所有,并保留所有权利。
Powered by
Discuz
, Processed in 0.280067 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved