📄 about.pas
字号:
unit About;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, jpeg, ExtCtrls, ComCtrls, StdCtrls, Buttons;
type
TAboutForm = class(TForm)
AboutImage: TImage;
AboutAnimate: TAnimate;
BOK: TBitBtn;
AboutPanel: TPanel;
AboutBevel: TBevel;
AboutVersionLabel: TLabel;
Label1: TLabel;
procedure FormCreate(Sender: TObject);
procedure BOKClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutForm: TAboutForm;
implementation
{$R *.dfm}
procedure TAboutForm.FormCreate(Sender: TObject);
begin
AboutAnimate.FileName := ExtractFilePath(Application.ExeName) +'\pic\fire.avi';
AboutAnimate.Active := True;
end;
procedure TAboutForm.BOKClick(Sender: TObject);
begin
Close;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -