C#限制鼠标移动范围.doc_第1页
C#限制鼠标移动范围.doc_第2页
C#限制鼠标移动范围.doc_第3页
C#限制鼠标移动范围.doc_第4页
C#限制鼠标移动范围.doc_第5页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1一个鼠标类#region一个鼠标类2/*/3/MouseControl4/MadebyMichael5/date2008-01-306/7classMouse89internalconstbyteSM_MOUSEPRESENT=19;10internalconstbyteSM_CMOUSEBUTTONS=43;11internalconstbyteSM_MOUSEWHEELPRESENT=75;1213internalstructPOINTAPI1415internalintx;16internalinty;171819internalstructRECT2021internalintleft;22internalinttop;23internalintright;24internalintbottom;252627System.Runtime.InteropServices.DllImport(user32.dll,EntryPoint=SwapMouseButton)28internalexternstaticintSwapMouseButton(intbSwap);2930System.Runtime.InteropServices.DllImport(user32,EntryPoint=ClipCursor)31internalexternstaticintClipCursor(refRECTlpRect);3233System.Runtime.InteropServices.DllImport(user32.dll,EntryPoint=GetCursorPos)34internalexternstaticintGetCursorPos(refPOINTAPIlpPoint);3536System.Runtime.InteropServices.DllImport(user32.dll,EntryPoint=ShowCursor)37internalexternstaticboolShowCursor(boolbShow);3839System.Runtime.InteropServices.DllImport(user32.dll,EntryPoint=EnableWindow)40internalexternstaticintEnableWindow(inthwnd,intfEnable);4142System.Runtime.InteropServices.DllImport(user32.dll,EntryPoint=GetWindowRect)43internalexternstaticintGetWindowRect(inthwnd,refRECTlpRect);4445System.Runtime.InteropServices.DllImport(user32.dll,EntryPoint=SetCursorPos)46internalexternstaticintSetCursorPos(intx,inty);4748System.Runtime.InteropServices.DllImport(user32.dll,EntryPoint=GetSystemMetrics)49internalexternstaticintGetSystemMetrics(intnIndex);5051System.Runtime.InteropServices.DllImport(user32.dll,EntryPoint=SetDoubleClickTime)52internalexternstaticintSetDoubleClickTime(intwCount);5354System.Runtime.InteropServices.DllImport(user32.dll,EntryPoint=GetDoubleClickTime)55internalexternstaticintGetDoubleClickTime();5657System.Runtime.InteropServices.DllImport(kernel32.DLL,EntryPoint=Sleep)58internalexternstaticvoidSleep(intdwMilliseconds);5960/得到鼠标相对与全屏的坐标,不是相对与你的Form的,且与你的分辨率有关系6162publicstaticintFullScreenPosition_X6364get6566POINTAPI_POINTAPI=newPOINTAPI();6768GetCursorPos(ref_POINTAPI);6970return_POINTAPI.x;71727374publicstaticintFullScreenPosition_Y7576get7778POINTAPI_POINTAPI=newPOINTAPI();7980GetCursorPos(ref_POINTAPI);8182return_POINTAPI.y;83848586/隐藏显示鼠标87publicstaticvoidHide()8889ShowCursor(false);909192publicstaticvoidShow()9394ShowCursor(true);959697/将鼠标锁定在你的Form里不过你得将你的Form先锁了,FormResize就失效了98publicstaticvoidLock(System.Windows.Forms.FormObjectForm)99100RECT_FormRect=newRECT();101102GetWindowRect(ObjectForm.Handle.ToInt32(),ref_FormRect);103104ClipCursor(ref_FormRect);105106107publicstaticvoidUnLock()108109RECT_ScreenRect=newRECT();110111_ScreenRect.top=0;112_ScreenRect.left=0;113_ScreenRect.bottom=System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Bottom;114_ScreenRect.right=System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Right;115116ClipCursor(ref_ScreenRect);117118119/鼠标失效,不过失效的好像不只是鼠标,小心哦120publicstaticvoidDisable(System.Windows.Forms.FormObjectForm)121122EnableWindow(ObjectForm.Handle.ToInt32(),0);123124125publicstaticvoidEnable(System.Windows.Forms.FormObjectForm)126127EnableWindow(ObjectForm.Handle.ToInt32(),1);128129/得到你的鼠标类型130publicstaticstringType131132get133134if(GetSystemMetrics(SM_MOUSEPRESENT)=0)135136return本计算机尚未安装鼠标;137138else139140if(GetSystemMetrics(SM_MOUSEWHEELPRESENT)!=0)141142returnGetSystemMetrics(SM_CMOUSEBUTTONS)+键滚轮鼠标;143144else145146returnGetSystemMetrics(SM_CMOUSEBUTTONS)+键鼠标;147148149150151152/设置鼠标双击时间153publicstaticvoidDoubleClickTime_Set(intMouseDoubleClickTime)154155SetDoubleClickTime(MouseDoubleClickTime);156157158publicstaticstringDoubleClickTime_Get()159160returnGetDoubleClickTime().ToString();161162163/设置鼠标默认主键164p

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论