Як отримати положення миші? Я хочу це з точки зору положення екрана.
Я запускаю свою програму, яку хочу встановити на поточну позицію миші.
Location.X = ??
Location.Y = ??
Редагувати: це має відбутися до створення форми.
Як отримати положення миші? Я хочу це з точки зору положення екрана.
Я запускаю свою програму, яку хочу встановити на поточну позицію миші.
Location.X = ??
Location.Y = ??
Редагувати: це має відбутися до створення форми.
Відповіді:
Ви повинні використовувати System.Windows.Forms.Cursor.Position : "Точка, яка представляє позицію курсора в координатних екранах."
PointToClient
.
Якщо ви не хочете посилатися на форми, ви можете використовувати interop для отримання позиції курсору:
using System.Runtime.InteropServices;
using System.Windows; // Or use whatever point class you like for the implicit cast operator
using System.Drawing;
/// <summary>
/// Struct representing a point.
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public struct POINT
{
public int X;
public int Y;
public static implicit operator Point(POINT point)
{
return new Point(point.X, point.Y);
}
}
/// <summary>
/// Retrieves the cursor's position, in screen coordinates.
/// </summary>
/// <see>See MSDN documentation for further information.</see>
[DllImport("user32.dll")]
public static extern bool GetCursorPos(out POINT lpPoint);
public static POINT GetCursorPosition()
{
POINT lpPoint;
GetCursorPos(out lpPoint);
// NOTE: If you need error handling
// bool success = GetCursorPos(out lpPoint);
// if (!success)
return lpPoint;
}
Cursor.Position отримає поточне положення миші на екрані (якщо ви перебуваєте в елементі управління , властивість MousePosition також отримає те саме значення).
Щоб встановити положення миші, вам доведеться скористатися Cursor.Position
і надати їй нову точку :
Cursor.Position = new Point(x, y);
Ви можете зробити це у своєму Main
методі перед тим, як створити форму.
Щоб відповісти на ваш конкретний приклад:
// your example
Location.X = Cursor.Position.X;
Location.Y = Cursor.Position.Y;
// sample code
Console.WriteLine("x: " + Cursor.Position.X + " y: " + Cursor.Position.Y);
Не забудьте додати using System.Windows.Forms;
та додати посилання на нього (клацніть правою кнопкою миші на посиланнях> додати посилання> вкладка .NET> Система.Windows.Forms> ok)
System.Windows.Forms.Control.MousePosition
Встановлює положення курсору миші в координатах екрана. "Властивість Position ідентична властивості Control.MousePosition."
Щоб отримати позицію, подивіться на подію OnMouseMove. MouseEventArgs дасть вам позиції x a y ...
protected override void OnMouseMove(MouseEventArgs mouseEv)
Для встановлення положення миші використовуйте властивість Cursor.Position.
http://msdn.microsoft.com/en-us/library/system.windows.forms.cursor.position.aspx
internal static class CursorPosition {
[StructLayout(LayoutKind.Sequential)]
public struct PointInter {
public int X;
public int Y;
public static explicit operator Point(PointInter point) => new Point(point.X, point.Y);
}
[DllImport("user32.dll")]
public static extern bool GetCursorPos(out PointInter lpPoint);
// For your convenience
public static Point GetCursorPosition() {
PointInter lpPoint;
GetCursorPos(out lpPoint);
return (Point) lpPoint;
}
}
Якщо вам потрібно отримати поточне положення в області форми (отримано експериментально), спробуйте:
Console.WriteLine("Current mouse position in form's area is " +
(Control.MousePosition.X - this.Location.X - 8).ToString() +
"x" +
(Control.MousePosition.Y - this.Location.Y - 30).ToString()
);
Хоча експериментом було виявлено 8 та 30 цілих чисел.
Було б дивним, якби хтось міг пояснити, чому саме ці числа ^.
Також є ще один варіант (враховуючи, що код знаходиться у CodeBehind Form):
Point cp = this.PointToClient(Cursor.Position); // Getting a cursor's position according form's area
Console.WriteLine("Cursor position: X = " + cp.X + ", Y = " + cp.Y);
Ви також повинні мати наступний імпорт, щоб імпортувати DLL
using System.Runtime.InteropServices;
using System.Diagnostics;