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. ASP.net导出Excel的几种方式

    2.导出多个sheet页的Excel 在Office Excel 中设计好 导出的格式,然后另存为xml电子表格,然后用记事本打开保存的xml文件,复制内容放入程序Response.Write() 输 ...

  2. for语句应用:乘法表

    乘法表: for语句应用: 1: 2: public class chengfa { 3: public static void main(String[] args) { 4: //int i; 5 ...

  3. UI基础视图----UIView总结

    UIView是UIKit框架里面最基础的视图类,是UIResponder的子类,是UIApplication和UIViewController的兄弟类,是UIWindow,UILabel,UIImag ...

  4. ImportError No module named memcache

    ImportError: No module named memcache 没有找到windows下的memcache,我们就用linux下的包来安装 先下载memcache linux下的安装包 f ...

  5. sprintf()详细介绍

    sprintf 编辑词条 编辑词条 -->   字串格式化命令,主要功能是把格式化的数据写入某个字符串中.sprintf 是个变参函数,使用时经常出问题,而且只要出问题通常就是能导致程序崩溃的内 ...

  6. Linux 软链接和硬链接的理解与学习

    理解前提: 首先要知道 Linux任意一个文件包含2个信息:第一个信息就是文件本身存的内容,第二个信息是文件的控制信息(读写,路径,大小等等),这2个信息是分开存储的,明白这点非常重要 理解总结: L ...

  7. web标准(复习)--1

    XHTML CSS基础知识 一.xhtml css基础知识首先说一下我们这节课的知识点 1.文档类型 2.语言编码 3.html标签 4.css样式 5.css优先级 6.css盒模型组成 1)文档类 ...

  8. PHP获取图片颜色值,检测图片主要颜色的代码:

    <?php $i=imagecreatefromjpeg("photo3.jpg");//测试图片,自己定义一个,注意路径 for ($x=0;$x<imagesx($ ...

  9. contentSize、contentInset和contentOffset区别

    contentSize.contentInset和contentOffset区别 分类: iphone开发2011-12-05 21:49 23495人阅读 评论(4) 收藏 举报 uiviewios ...

  10. TWRP-recovery中文界面安装方法[转]

    把下载到的ui.zip放入sdcard1/twrp文件夹.注意,是内置存储卡中.如没有上述文件夹,自行建立后通过文件管理器放入,不是卡刷.文件夹应如下所示:sdcard1(内置SD)  |  ┕--t ...