码迷,mamicode.com
首页 > Windows程序 > 详细

Delphi 获取当前鼠标下的控件内容

时间:2018-11-15 17:15:29      阅读:443      评论:0      收藏:0      [点我收藏+]

标签:led   Fix   getc   tracking   message   tcl   views   str   string   

 

Delphi 获取当前鼠标下的控件内容

主要函数:

GetCursorPos;//获取鼠标的位置

WindowFromPoint;//获取制定point下的handle

GetClassName;//获取类的名字

 

function TForm1.GetEditText: string;
var
  Point: TPoint;
  Name: array[0..255] of Char;
  Buffer: array[0..1023] of Char;
  AHandle: THandle;
begin
  //取得鼠标位置
  GetCursorPos(Point);
  //取得当前窗口句柄
  AHandle := WindowFromPoint(Point);
  GetClassName(AHandle, Name, Length(Name));
  if AHandle = Self.Handle then
    Exit;
  SendMessage(AHandle, WM_GETTEXT, 1023, Integer(@Buffer));
  Caption := StrPas(Name);
  Result := StrPas(Buffer);  
end;

 

procedure TForm1.tmr1Timer(Sender: TObject);
begin
  mmo1.Lines.Text := GetEditText;
end;

 

https://blog.csdn.net/lwstar23133/article/details/6773883

Delphi 获取当前鼠标下的控件内容

标签:led   Fix   getc   tracking   message   tcl   views   str   string   

原文地址:https://www.cnblogs.com/zhangzhifeng/p/9964272.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!