📄 aboutform.pas
字号:
unit AboutForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
jpeg, ExtCtrls, KsHooks, KsForms, KsSkinForms;
type
TfrmAboutForm = class(TForm)
imgFace: TImage;
procedure imgFaceClick(Sender: TObject);
private
{ Private declarations }
bReturn: Boolean;
procedure MainShow;
public
{ Public declarations }
end;
function AboutFormShow: boolean;
implementation
{$R *.DFM}
function AboutFormShow: boolean;
var
frmAboutForm: TfrmAboutForm;
begin
frmAboutForm := TfrmAboutForm.Create(Application);
with frmAboutForm do
begin
MainShow;
Result := bReturn;
Free;
end;
end;
procedure TfrmAboutForm.MainShow;
begin
bReturn := False;
ShowModal;
end;
procedure TfrmAboutForm.imgFaceClick(Sender: TObject);
begin
Close;
bReturn := True;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -