winform,程序運行後,
希望用戶在任何其它窗口中點擊鼠標時,記錄鼠標點擊的位置,如果點擊的是個textbox,就記錄那個textbox的位置和大小,
捕獲鼠標點擊已經用全局鉤子實現,控件那個需求完全沒思路,求思路
首先自定義一個鼠標點擊的參數類, 參數類包含了點擊控件的對象(位置大小), 包含了鼠標的狀態(坐標)
public class MouseEventArgsParameter
{
public MouseEventArgsParameter(MouseEventArgs args, Control control)
{
MouseEventArgs = args;
Control = control;
}
public MouseEventArgs MouseEventArgs { get; set; }
public Control Control { get; set; }
}
在窗體增加LoadLocation方法用來動態為窗口所有的控件增加鼠標點擊的事件
public void LoadLocation()
{
foreach (Control control in this.Controls)
{
control.MouseClick += new MouseEventHandler(control_MouseClick);
}
}
這裡是鼠標點擊的事件,然後重新自定義一個鼠標的事件將控件和鼠標的屬性變成一個對象以便使用
void control_MouseClick(object sender, MouseEventArgs e)
{
MouseClick_Handler(new MouseEventArgsParameter(e, (Control)sender));
}
public void MouseClick_Handler(MouseEventArgsParameter args)
{
MessageBox.Show(string.Format("所點擊的控件名稱:{0}, 位置:{1}, 大小:{2}", args.Control.Name, "(" + args.Control.Location.X + "," + args.Control.Location.Y + ")", "寬" + args.Control.Size.Width + " 高" + args.Control.Size.Height));
}