C#获取Windows下光标位置(转)
生活随笔
收集整理的這篇文章主要介紹了
C#获取Windows下光标位置(转)
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
使用C#獲取光標(biāo)相對(duì)于顯示器屏幕的位置:
方式一:
1 [csharp] view plaincopyprint? 2 using System; 3 using System.Drawing; 4 using System.Runtime.InteropServices; 5 6 namespace ColorPicker 7 { 8 /// <summary> 9 /// win8下wpf程序測(cè)試成功 10 /// </summary> 11 public class CursorPointManager 12 { 13 #region 得到光標(biāo)在屏幕上的位置 14 [DllImport("user32")] 15 private static extern bool GetCursorPos(out Point lpPoint); 16 17 /// <summary> 18 /// 獲取光標(biāo)相對(duì)于顯示器的位置 19 /// </summary> 20 /// <returns></returns> 21 public static Point GetCursorPosition() 22 { 23 Point showPoint = new Point(); 24 GetCursorPos(out showPoint); 25 return showPoint; 26 } 27 #endregion 28 29 } 30 }?
方式二:
使用System.Windows.Forms的Cursor類。
在WPF程序中引入System.Windows.Forms命名空間,如下調(diào)用
1 [csharp] view plaincopyprint? 2 System.Drawing.Point point =System.Windows.Forms.Cursor.Position;?
轉(zhuǎn)載于:https://www.cnblogs.com/Seek-logic/archive/2013/05/15/3079134.html
總結(jié)
以上是生活随笔為你收集整理的C#获取Windows下光标位置(转)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: windows .bat获取XCOPY返
- 下一篇: 【Leetcode_easy】657.