รับตำแหน่งเมาส์ใน c #


117

ฉันจะรับตำแหน่งเมาส์ได้อย่างไร? ฉันต้องการมันในแง่ของตำแหน่งหน้าจอ

ฉันเริ่มโปรแกรมของฉันฉันต้องการตั้งค่าเป็นตำแหน่งเมาส์ปัจจุบัน

Location.X = ??
Location.Y = ??

แก้ไข:สิ่งนี้จะต้องเกิดขึ้นก่อนที่จะสร้างแบบฟอร์ม

คำตอบ:


180

คุณควรใช้System.Windows.Forms.Cursor.Position : "จุดที่แสดงตำแหน่งของเคอร์เซอร์ในพิกัดหน้าจอ"


2
เคอร์เซอร์ตำแหน่งแสดงวิธีคำแนะนำเครื่องมือของฉันออกจากหน้าจอ: (-
Thomas Eyde

25
@Thomas Eyde: ฉันคาดเดา แต่อาจเป็นเพราะตำแหน่งของเมาส์อยู่ในพิกัดหน้าจอและตำแหน่งคำแนะนำเครื่องมือของคุณสัมพันธ์กับหน้าต่างหลักหรือไม่? คุณอาจต้องใช้PointToClient.
RichieHindle

ใช่นั่นคือสิ่งที่ฉันต้องทำ
Thomas Eyde

88

หากคุณไม่ต้องการอ้างอิงแบบฟอร์มคุณสามารถใช้การทำงานร่วมกันเพื่อรับตำแหน่งเคอร์เซอร์:

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;
}

1
จะอ้างอิงประเภท POINT ได้อย่างไร?
Manish Dubey

2
เพิ่มการอ้างอิงถึง System.Drawing
Bose_geek

1
ทางออกที่ยอดเยี่ยม แต่คุณไม่จำเป็นต้องประกาศโครงสร้าง POINT เพียงใช้ Win32Interop.Structs เนมสเปซ
Manpreet Singh Dhillon

@ManpreetSinghDhillon Win32Interop.Structs มีอยู่ใน. Net Core หรือไม่ ถ้าใช่ภายใต้การอ้างอิงแพ็คเกจ / ระบบของ nuget ใด
demonicdaron

@ManpreetSinghDhillon การใช้โครงสร้างของคุณเองช่วยให้คุณสามารถส่งโดยปริยายไปยังจุดใดก็ได้ที่คุณใช้ในรหัสของคุณมันจะราบรื่นกว่าเล็กน้อย หาก Win32Interop.Structs เพียงพอสำหรับคุณแล้วไปข้างหน้าและใช้มันแทน!
Mo0gles

17

Cursor.Positionจะได้รับ poisition หน้าจอปัจจุบันของเมาส์ (ถ้าคุณอยู่ในการควบคุมการMousePositionคุณสมบัติยังจะได้รับค่าเดียวกัน)

ในการตั้งค่าตำแหน่งเมาส์คุณจะต้องใช้Cursor.Positionและให้จุดใหม่:

Cursor.Position = new Point(x, y);

คุณสามารถทำได้ในMainวิธีการของคุณก่อนสร้างแบบฟอร์มของคุณ


16

เพื่อตอบตัวอย่างเฉพาะของคุณ:

// 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> Systems.Windows.Forms> ตกลง)


12
System.Windows.Forms.Control.MousePosition

รับตำแหน่งของเคอร์เซอร์ของเมาส์ในพิกัดหน้าจอ "คุณสมบัติตำแหน่งจะเหมือนกับคุณสมบัติ Control.MousePosition"


4
ไม่จำเป็นต้องหยาบคาย นี่เป็นอีกทางเลือกหนึ่งของคำตอบหลัก ฉันชอบอันนี้เพราะ 'Cursor.Position' อีกอันฟังดูเหมือนเคอร์เซอร์ประเภทข้อความ IMHO และ 'MousePosition' นั้นชัดเจนกว่า
เจมส์

3
@Jan Dvorak แน่นอนและใช่ฉันคิดว่ามันอาจจะมีประโยชน์ ฉันจะพูดประมาณนี้ "โปรดใส่ข้อมูลเพิ่มเติมเล็กน้อยเพื่อที่ฉันจะได้เห็นว่าสิ่งนี้อาจแตกต่างจากคำตอบที่ให้ไว้ก่อนหน้านี้อย่างไร"
เจมส์

@JanDvorak ถ้าคุณคิดว่า one-liners ไม่ช่วย (btw พวกเขาทำ) มันไม่ได้ขึ้นอยู่กับว่าคำถามมีอายุ 1 วันหรือ 3 ปี +1 สำหรับแนวทางอื่น
nawfal


6
   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;
  }

}


3

เริ่มต้นเคอร์เซอร์ปัจจุบัน ใช้เพื่อรับตำแหน่ง X และ Y

this.Cursor = new Cursor(Cursor.Current.Handle);
int posX = Cursor.Position.X;
int posY = Cursor.Position.Y;

3

หากคุณต้องการรับตำแหน่งปัจจุบันในพื้นที่ของแบบฟอร์ม (ทดลอง) ให้ลอง:

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 ของแบบฟอร์ม):

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);

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.