📄 asfind.pas
字号:
unit asfind;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ashlp, ExtCtrls;
type
Tfinddlg = class(TForm)
Label1: TLabel;
findtext: TEdit;
chkcase: TCheckBox;
chkfull: TCheckBox;
chkregular: TCheckBox;
Button1: TButton;
Button2: TButton;
Button3: TButton;
dir: TRadioGroup;
where: TRadioGroup;
procedure Button3Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
finddlg: Tfinddlg;
implementation
{$R *.DFM}
procedure Tfinddlg.Button3Click(Sender: TObject);
var
findhlp:tfindhlp;
begin
findhlp:=tfindhlp.create(self);
try
findhlp.showmodal;
finally
findhlp.free;
end;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -