?? ushowwin.pas
字號(hào):
unit UShowWin;
interface
uses
Classes, Controls, Sysutils, Windows;
type
TShowWin = class(TThread)
private
procedure ShowInput;
protected
procedure Execute; override;
end;
implementation
uses UKeyInput;
{ Important: Methods and properties of objects in visual components can only be
used in a method called using Synchronize, for example,
Synchronize(UpdateCaption);
and UpdateCaption could look like,
procedure ShowWin.UpdateCaption;
begin
Form1.Caption := 'Updated in a thread';
end; }
{ ShowWin }
procedure TShowWin.Execute;
begin
Synchronize(ShowInput);
end;
procedure TShowWin.ShowInput;
var
sF:TStringList;
begin
FreeOnTerminate:=True;
Terminate;
end;
end.
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -