?? unit1.pas
字號:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TForm1 = class(TForm)
WindowsNameListBox: TListBox;
ListButton: TButton;
procedure ListButtonClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.ListButtonClick(Sender: TObject);
var
hCurrentWindow: HWnd;
szText: array[0..254] of char;
begin
WindowsNameListBox.Clear;
//獲取第一個窗口的句柄
hCurrentWindow := GetWindow(Handle, GW_HWNDFIRST);
while hCurrentWindow <> 0 do
begin
//獲取窗口的名稱
if GetWindowText(hCurrentWindow, @szText, 255)>0 then
WindowsNameListBox.Items.Add(StrPas(@szText));
//獲取下一窗口的句柄
hCurrentWindow:=GetWindow(hCurrentWindow, GW_HWNDNEXT);
end;
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -