📄 about_un.pas
字号:
unit about_un;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, stand_un, ExtCtrls, BusinessSkinForm, bsSkinCtrls, jpeg;
type
Tabout = class(Tstand)
Image1: TImage;
bsSkinRadioGroup1: TbsSkinRadioGroup;
bsSkinLabel1: TbsSkinLabel;
bsSkinLabel2: TbsSkinLabel;
bsSkinLabel4: TbsSkinLabel;
bsSkinXFormButton2: TbsSkinXFormButton;
bsSkinLabel3: TbsSkinLabel;
procedure FormActivate(Sender: TObject);
procedure bsSkinXFormButton2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
about: Tabout;
implementation
uses main_un;
{$R *.dfm}
procedure Tabout.FormActivate(Sender: TObject);
{var
firsttickcount,amn:longint; }
begin
{ inherited;
firsttickcount:=gettickcount;
repeat
application.ProcessMessages;
amn:= gettickcount;
until ((amn-firsttickcount)>=2000) or (amn<firsttickcount);
close; }
end;
procedure Tabout.bsSkinXFormButton2Click(Sender: TObject);
begin
inherited;
close;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -