c# winform 怎么知道鼠标停留在哪个控件上。
例如窗体有一些控件,当我鼠标停留在button1上的时候,MessageBox.Show(button1.Text),停留在button2上的时候,MessageBox....
例如窗体有一些控件,当我鼠标停留在button1上的时候,MessageBox.Show(button1.Text),停留在button2上的时候,MessageBox.Show(button2.Text)。怎么捕获我鼠标停留在的地方是什么控件啊?控件很多,如果一个一个处理的话是不切实际的,最好能够只能获取控件Name。
展开
1个回答
推荐于2016-10-17 · 知道合伙人软件行家
关注
展开全部
转:/**********************
* 课题:将窗体中鼠标所在控件名显示在窗体明滑标题上
* 作者:ZAXX
* QQ : 94027486
* 本课题可简单扩展:获取屏幕上鼠标所在位置的窗口句柄与类名激皮腊
**********************/
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace Zaxx
{
public partial class MouseOnControl: Form
{
[DllImport("握羡User32.dll")]
private static extern IntPtr WindowFromPoint(Point p);
Timer timer;
public MouseOnControl()
{
InitializeComponent();
timer = new Timer();
timer.Interval = 200;
timer.Enabled = true;
timer.Tick += new EventHandler(timer_Tick);
}
void timer_Tick(object sender, EventArgs e)
{
Point p = Cursor.Position;
IntPtr h = WindowFromPoint(p);
foreach (Control con in this.Controls)
if (con.Handle == h)
this.Text = con.Name;
}
}
}
* 课题:将窗体中鼠标所在控件名显示在窗体明滑标题上
* 作者:ZAXX
* QQ : 94027486
* 本课题可简单扩展:获取屏幕上鼠标所在位置的窗口句柄与类名激皮腊
**********************/
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace Zaxx
{
public partial class MouseOnControl: Form
{
[DllImport("握羡User32.dll")]
private static extern IntPtr WindowFromPoint(Point p);
Timer timer;
public MouseOnControl()
{
InitializeComponent();
timer = new Timer();
timer.Interval = 200;
timer.Enabled = true;
timer.Tick += new EventHandler(timer_Tick);
}
void timer_Tick(object sender, EventArgs e)
{
Point p = Cursor.Position;
IntPtr h = WindowFromPoint(p);
foreach (Control con in this.Controls)
if (con.Handle == h)
this.Text = con.Name;
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询