1#region
3using System;
4using System.Runtime.InteropServices;
6#endregion
8namespace Windows.Forms.Base
9{
public class Mouse
{
MouseEventFlag enum#region MouseEventFlag enum
14 [Flags]
public enum MouseEventFlag : uint
{
Move = 0x0001,
LeftDown = 0x0002,
LeftUp = 0x0004,
RightDown = 0x0008,
RightUp = 0x0010,
MiddleDown = 0x0020,
MiddleUp = 0x0040,
XDown = 0x0080,
XUp = 0x0100,
Wheel = 0x0800,
VirtualDesk = 0x4000,
Absolute = 0x8000
}
31 #endregion
33 internal const byte SM_CMOUSEBUTTONS = 43;
internal const byte SM_MOUSEPRESENT = 19;
internal const byte SM_MOUSEWHEELPRESENT = 75;
37 public static int FullScreenPosition_X
{
get
{
POINTAPI _POINTAPI = new POINTAPI();
GetCursorPos(ref _POINTAPI);
return _POINTAPI.x;
}
}
47 public static int FullScreenPosition_Y
{
get
{
POINTAPI _POINTAPI = new POINTAPI();
GetCursorPos(ref _POINTAPI);
return _POINTAPI.y;
}
}
57 public static string Type
{
get
{
if (GetSystemMetrics(SM_MOUSEPRESENT) == 0)
{
return "本计算机尚未安装鼠标";
}
if (GetSystemMetrics(SM_MOUSEWHEELPRESENT) != 0)
{
return GetSystemMetrics(SM_CMOUSEBUTTONS) + "键滚轮鼠标";
}
return GetSystemMetrics(SM_CMOUSEBUTTONS) + "键鼠标";
}
}
73 /**//// <summary>
///鼠标左右键功能互换
/// </summary>
/// <param name="bSwap"></param>
/// <returns></returns>
[DllImport("user32.dll", EntryPoint = "SwapMouseButton")]
public static extern int SwapMouseButton(int bSwap);
81 /**//// <summary>
/// 鼠标的移动区域限制
/// 0为释放限制
/// </summary>
/// <param name="lpRect"></param>
/// <returns></returns>
[DllImport("user32", EntryPoint = "ClipCursor")]
public static extern int ClipCursor(ref RECT lpRect);
90 /**//// <summary>
/// 获取鼠标坐标
/// </summary>
/// <param name="lpPoint"></param>
/// <returns></returns>
[DllImport("user32.dll", EntryPoint = "GetCursorPos")]
public static extern int GetCursorPos(ref POINTAPI lpPoint);
98 /**//// <summary>
/// 显示和隐藏鼠标指针.
/// 1为显示0为隐藏
/// </summary>
/// <param name="bShow"></param>
/// <returns></returns>
[DllImport("user32.dll", EntryPoint = "ShowCursor")]
public static extern bool ShowCursor(bool bShow);
107 /**//// <summary>
/// 将非模态窗口显示为模态窗口
/// </summary>
/// <param name="hwnd"></param>
/// <param name="fEnable"></param>
/// <returns></returns>
[DllImport("user32.dll", EntryPoint = "EnableWindow")]
public static extern int EnableWindow(int hwnd, int fEnable);
116 /**//// <summary>
/// 获得窗口的大小
/// </summary>
/// <param name="hwnd"></param>
/// <param name="lpRect"></param>
/// <returns></returns>
[DllImport("user32.dll", EntryPoint = "GetWindowRect")]
public static extern int GetWindowRect(int hwnd, ref RECT lpRect);
125 /**//// <summary>
/// 设置鼠标坐标
/// </summary>
/// <param name="x"></param>
/// <param name="y"></param>
/// <returns></returns>
[DllImport("user32.dll", EntryPoint = "SetCursorPos")]
public static extern int SetCursorPos(int x, int y);
134 /**//// <summary>
/// 返回Win桌面中各种显示单元的宽度和高度、是否安装了鼠标、是否调换了鼠标左右键的定义等
/// </summary>
/// <param name="nIndex"></param>
/// <returns></returns>
[DllImport("user32.dll", EntryPoint = "GetSystemMetrics")]
public static extern int GetSystemMetrics(int nIndex);
142 /**//// <summary>
/// 参数wCount,表示鼠标双击时间,为毫秒级,系统默认时间为500
/// </summary>
/// <param name="wCount"></param>
/// <returns></returns>
[DllImport("user32.dll", EntryPoint = "SetDoubleClickTime")]
public static extern int SetDoubleClickTime(int wCount);
150 /**//// <summary>
/// 该函数无参数;它的返回值为毫秒,为双击鼠标双击有效的时间间隔。
/// </summary>
/// <returns></returns>
[DllImport("user32.dll", EntryPoint = "GetDoubleClickTime")]
public static extern int GetDoubleClickTime();
157 /**//// <summary>
/// 只是休眠而已
/// </summary>
/// <param name="dwMilliseconds"></param>
[DllImport("kernel32.DLL", EntryPoint = "Sleep")]
public static extern void Sleep(int dwMilliseconds);
164 /**//// <summary>
/// 模拟鼠标操作
/// 调用方法
/// mouse_event(MOUSEEVENTF_LEFTDOWN, X * 65536 / 1024, Y * 65536 / 768, 0, 0);
/// mouse_event(MOUSEEVENTF_LEFTUP, X * 65536 / 1024, Y * 65536 / 768, 0, 0);
/// 其中X,Y分别是你要点击的点的横坐标和纵坐标
/// </summary>
/// <param name="dwFlags"></param>
/// <param name="dx"></param>
/// <param name="dy"></param>
/// <param name="dwData"></param>
/// <param name="dwExtraInfo"></param>
[DllImport("user32.dll")]
public static extern void mouse_event(MouseEventFlag flags, int dx, int dy, uint data, UIntPtr extraInfo);
179 // 隐藏 显示 鼠标
public static void Hide()
{
ShowCursor(false);
}
185 public static void Show()
{
ShowCursor(true);
}
190 // 将鼠标锁定在你的Form里 不过你得将你的Form先锁了,Form Resize 就失效了
public static void Lock(System.Windows.Forms.Form ObjectForm)
{
RECT _FormRect = new RECT();
GetWindowRect(ObjectForm.Handle.ToInt32(), ref _FormRect);
ClipCursor(ref _FormRect);
}
198 public static void UnLock()
{
RECT _ScreenRect = new RECT();
_ScreenRect.top = 0;
_ScreenRect.left = 0;
_ScreenRect.bottom = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Bottom;
_ScreenRect.right = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Right;
ClipCursor(ref _ScreenRect);
}
208 // 鼠标失效,不过失效的好像不只是鼠标,小心哦
public static void Disable(System.Windows.Forms.Form ObjectForm)
{
EnableWindow(ObjectForm.Handle.ToInt32(), 0);
}
214 public static void Enable(System.Windows.Forms.Form ObjectForm)
{
EnableWindow(ObjectForm.Handle.ToInt32(), 1);
}
219 // 鼠标自己移动
public static void Move(int From_Handle_ToInt32, int To_Handle_ToInt32)
{
RECT rectFrom = new RECT();
RECT rectTo = new RECT();
int i;
GetWindowRect(From_Handle_ToInt32, ref rectFrom);
GetWindowRect(To_Handle_ToInt32, ref rectTo);
if ((rectFrom.left + rectFrom.right)/2 - (rectTo.left + rectTo.right)/2 > 0)
{
for (i = (rectFrom.left + rectFrom.right)/2; i >= (rectTo.left + rectTo.right)/2; i--)
{
SetCursorPos(i, (rectFrom.top + rectFrom.bottom)/2);
Sleep(1);
}
}
else
{
for (i = (rectFrom.left + rectFrom.right)/2; i <= (rectTo.left + rectTo.right)/2; i++)
{
SetCursorPos(i, (rectFrom.top + rectFrom.bottom)/2);
Sleep(1);
}
}
if ((rectFrom.top + rectFrom.bottom)/2 - (rectTo.top + rectTo.bottom)/2 > 0)
{
for (i = (rectFrom.top + rectFrom.bottom)/2; i >= (rectTo.top + rectTo.bottom)/2; i--)
{
SetCursorPos((rectTo.left + rectTo.right)/2, i);
Sleep(1);
}
}
else
{
for (i = (rectFrom.top + rectFrom.bottom)/2; i <= (rectTo.top + rectTo.bottom)/2; i++)
{
SetCursorPos((rectTo.left + rectTo.right)/2, i);
Sleep(1);
}
}
}
261 // 得到你的鼠标类型
263 // 设置鼠标双击时间
public static void DoubleClickTime_Set(int MouseDoubleClickTime)
{
SetDoubleClickTime(MouseDoubleClickTime);
}
269 public static string DoubleClickTime_Get()
{
return GetDoubleClickTime().ToString();
}
274 // 设置鼠标默认主键
public static void DefaultRightButton()
{
SwapMouseButton(1);
}
280 public static void DefaultLeftButton()
{
SwapMouseButton(0);
}
285 Nested type: POINTAPI#region Nested type: POINTAPI
287 public struct POINTAPI
{
public int x;
public int y;
}
293 #endregion
295 Nested type: RECT#region Nested type: RECT
297 public struct RECT
{
public int bottom;
public int left;
public int right;
public int top;
}
305 #endregion
}
307}

c# 鼠标操作的更多相关文章

  1. Python模拟键盘输入和鼠标操作

    Python模拟键盘输入和鼠标操作 一.Python键盘输入模拟: import win32api import win32con win32api.keybd_event(17,0,0,0)  #c ...

  2. opencv鼠标操作及GUI矩形绘画

    OpenCV的鼠标操作是通过一个中介函数配合回调函数来实现的.指定鼠标操作消息回调函数的函数为SetMouseCallback. void setMouseCallback(const string& ...

  3. WPF 中模拟键盘和鼠标操作

    转载:http://www.cnblogs.com/sixty/archive/2009/08/09/1542210.html 更多经典文章:http://www.qqpjzb.cn/65015.ht ...

  4. python selenium-webdriver 元素操作之鼠标操作(四)

    上节内容主要说明了元素的定位,本节内容说要说对元素的操作,元素的操作分为两部分一部分是鼠标的操作,另一种是对键盘对元素的操作,下面我们主要讲解一下鼠标对元素的操作. webdriver 模块中几种比较 ...

  5. python-web自动化-鼠标操作

    鼠标操作由ActionChains类来完成鼠标操作 perform() 执行鼠标操作move_to_element() 鼠标悬浮:最常用的操作double_click() 双击操作context_cl ...

  6. Selenium基础知识(二)鼠标操作

    一.鼠标操作 这个需要使用webdriver下的ActionChains类,这个类是操作鼠标操作的: from selenium.webdriver import ActionChains 鼠标操作可 ...

  7. selenium自动化之鼠标操作

    在做自动化测试的时候,经常会遇到这种情况,某个页面元素,你必须要把鼠标移动到上面才能显示出元素.那么这种情况,我们怎么处理呢?,selenium给我们提供了一个类来处理这类事件——ActionChai ...

  8. 【python】鼠标操作

    [python]鼠标操作 推荐地址:http://www.cnblogs.com/fnng/p/3288444.html --------------------------------------- ...

  9. OpenCV——图像的载入、显示、输出到文件和滑动条、鼠标操作

    图像的载入.显示.输出到文件和滑动条 滑动条 示例: 鼠标操作

随机推荐

  1. Android(工具・集成)

    ■ NDK Android从始(2009)至终是支持JNI的. 只不过一开始没有NDK.需要自己安装交叉编译器创建so,然后放到assert之类捆绑so发布. 有了NDK.有了什么? libc lib ...

  2. 掌众android面试题

    1,android动画分类? http://www.cnblogs.com/angeldevil/archive/2011/12/02/2271096.html 2,android service启动 ...

  3. xcode下载方式

    1.去AppStore下载 对于Xcode老是在AppStore升级失败,而且下载慢,可取找到了这个--> 官方 Xcode .dmg 文件下载链接:超级传送门 2.开发者中心官网下载 可参考这 ...

  4. 武汉科技大学ACM :1010: 华科版C语言程序设计教程(第二版)例题7.8

    Problem Description 输入一个用年月日表示的日期,求该日期是该年的第几天.输入某年的第几天,输出这一天是该年的几月几号,茂茂解不出,需要你的帮助. Input 开始有个整数k,表示询 ...

  5. lib,dll区别 及 VS中如何添加lib,dll

    1.加载lib/头文件 分两种方法: (1)适用于当前项目 第一步:项目->属性->C/C++->常规->附加包含目录(浏览.h文件的路径) 添加包含文件 第二步:项目-> ...

  6. SVN搭建本地版本控制仓库

    1.安装TortoiseSVN 2.新建一个文件夹,比如F:\SvnProjectsCfg 3.在F:\SvnProjectsCfg新建一个文件夹project1,右键该文件夹选择“create re ...

  7. js禁止默认的右键菜单或出现自定义右键菜单

    1.屏蔽默认的右键菜单 js: document.getElementById('myimg').oncontextmenu=function(){return false;} jquery: $(' ...

  8. js定时跳转

    在项目中有时会用到定时跳转,自己收藏了一个比较好用的 js写的,不依赖jQuery <script type="text/javascript"> function c ...

  9. 关于lambda表达式树

    总而言之: 就是在表达式中没有花括号. IEnumerable<Rect> rectlist3 = rectlist.Select(rect =>newRect(rect.X + 2 ...

  10. C程序设计语言练习题1-4

    练习1-4 编写一个程序打印摄氏温度转换为相应华氏温度的转换表. 代码如下: #include <stdio.h> // 包含标准库的信息. int main() // 定义名为main的 ...