📄 about.pas
字号:
unit About;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, ExtCtrls;
type
TfrmAbout = class(TForm)
Panel1: TPanel;
Image1: TImage;
Bevel1: TBevel;
BitBtn1: TBitBtn;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Label6: TLabel;
Label7: TLabel;
procedure BitBtn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
procedure ShowAbout;
var
frmAbout: TfrmAbout;
implementation
{$R *.dfm}
procedure ShowAbout;
begin
Application.CreateForm(TfrmAbout,frmAbout);
with frmAbout do
begin
ShowModal ;
end;
end;
procedure TfrmAbout.BitBtn1Click(Sender: TObject);
begin
close;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -