📄 searchlog.pas
字号:
unit SearchLog;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TdlgSearchLog = class(TForm)
edID: TEdit;
edName: TEdit;
edNewCard: TEdit;
cbID: TCheckBox;
cbName: TCheckBox;
cbNewCard: TCheckBox;
edOldCard: TEdit;
cbOldCard: TCheckBox;
GroupBox1: TGroupBox;
edStartTime: TEdit;
edEndTime: TEdit;
cbTime: TCheckBox;
ckUser: TCheckBox;
cbUser: TComboBox;
cbType: TComboBox;
ckType: TCheckBox;
btnSearch: TButton;
btnClose: TButton;
Label1: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
dlgSearchLog: TdlgSearchLog;
implementation
{$R *.dfm}
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -