WinForms:检测光标何时进入/离开表单或其控件

时间:2012-03-08 13:50:44

标签: c# .net winforms mouseenter mouseleave

我需要一种检测光标何时进入或离开表单的方法。当控件填充表单时,Form.MouseEnter / MouseLeave不起作用,因此我还必须订阅控件的MouseEnter事件(例如表单上的面板)。跟踪形式光标进入/退出全球的任何其他方式?

2 个答案:

答案 0 :(得分:4)

你可以试试这个:

private void Form3_Load(object sender, EventArgs e)
{
  MouseDetector m = new MouseDetector();
  m.MouseMove += new MouseDetector.MouseMoveDLG(m_MouseMove);
}

void m_MouseMove(object sender, Point p)
{
  Point pt = this.PointToClient(p);
  this.Text = (this.ClientSize.Width >= pt.X && 
               this.ClientSize.Height >= pt.Y && 
               pt.X > 0 && pt.Y > 0)?"In":"Out";     
}

MouseDetector类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Drawing;

class MouseDetector
{
  #region APIs

  [DllImport("gdi32")]
  public static extern uint GetPixel(IntPtr hDC, int XPos, int YPos);

  [DllImport("user32.dll", CharSet = CharSet.Auto)]
  public static extern bool GetCursorPos(out POINT pt);

  [DllImport("User32.dll", CharSet = CharSet.Auto)]
  public static extern IntPtr GetWindowDC(IntPtr hWnd);

  #endregion

  Timer tm = new Timer() {Interval = 10};
  public delegate void MouseMoveDLG(object sender, Point p);
  public event MouseMoveDLG MouseMove;
  public MouseDetector()
  {                
    tm.Tick += new EventHandler(tm_Tick); tm.Start();
  }

  void tm_Tick(object sender, EventArgs e)
  {
    POINT p;
    GetCursorPos(out p);
    if (MouseMove != null) MouseMove(this, new Point(p.X,p.Y));
  }

  [StructLayout(LayoutKind.Sequential)]
  public struct POINT
  {
    public int X;
    public int Y;
    public POINT(int x, int y)
    {
      X = x;
      Y = y;
    }
  }
}

答案 1 :(得分:1)

你可以像在这个答案中一样使用win32: How to detect if the mouse is inside the whole form and child controls in C#?

或者您可以在表单的OnLoad中连接所有顶级控件:

     foreach (Control control in this.Controls)
            control.MouseEnter += new EventHandler(form_MouseEnter);
相关问题