Delphi WinAPI: GetFocus - 获取当前拥有焦点的窗口的句柄


本文整理自网络,侵删。

 
WinAPI: GetFocus - 获取当前拥有焦点的窗口的句柄
//声明:
GetFocus: HWND; {无参数; 返回当前拥有焦点窗口的句柄}


//举例:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, ExtCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    Memo1: TMemo;
    Edit1: TEdit;
    Timer1: TTimer;
    procedure Timer1Timer(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Timer1Timer(Sender: TObject);
var
  h: HWND;
begin
  h := GetFocus;
  Text := IntToStr(h);
end;

end.

相关阅读 >>

Delphi 读取文件的md5值

Delphi实现解析百度搜索结果link?url=

Delphi 泛型搜索字符串数组

Delphi 判断文件扩展名函数

Delphi中indy10 的idtcpserver断开客户端连接报错问题的解决办法

Delphi xe 提权代码

Delphi tzipfile 用法

Delphi unigui unicheckbox勾选

Delphi urldownloadtofile 实现文件下载

Delphi中利用msdasc来配置数据库链接

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...