📄 aboutunit.pas
字号:
unit AboutUnit;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
bsSkinCtrls, BusinessSkinForm, StdCtrls, bsSkinBoxCtrls, ExtCtrls;
type
TAboutForm = class(TForm)
bsBusinessSkinForm1: TbsBusinessSkinForm;
bsSkinButton1: TbsSkinButton;
bsSkinTextLabel1: TbsSkinTextLabel;
bsSkinStdLabel1: TbsSkinStdLabel;
bsSkinStdLabel2: TbsSkinStdLabel;
bsSkinLinkLabel1: TbsSkinLinkLabel;
bsSkinLinkLabel2: TbsSkinLinkLabel;
bsSkinLinkImage1: TbsSkinLinkImage;
procedure bsSkinButton1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutForm: TAboutForm;
implementation
Uses MainUnit;
{$R *.DFM}
procedure TAboutForm.bsSkinButton1Click(Sender: TObject);
begin
Close;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -