📄 fr_about.pas
字号:
{*****************************************}
{ }
{ FastReport v2.3 }
{ About window }
{ }
{ Copyright (c) 1998-99 by Tzyganenko A. }
{ }
{*****************************************}
unit FR_About;
interface
{$I FR.inc}
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls, FR_Const;
type
TfrAboutForm = class(TForm)
Label1: TLabel;
Button1: TButton;
Bevel1: TBevel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Image1: TImage;
Bevel2: TBevel;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frAboutForm: TfrAboutForm;
implementation
{$R *.DFM}
procedure TfrAboutForm.FormCreate(Sender: TObject);
begin
Caption := LoadStr(frRes + 540);
Button1.Caption := LoadStr(SOk);
// Label2.Caption := Label2.Caption + ' build 2';
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -