?? about.pas
字號:
unit about;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls, ComCtrls;
type
TAboutBox = class(TForm)
OKButton: TButton;
PageControl1: TPageControl;
TabSheet1: TTabSheet;
TabSheet2: TTabSheet;
Memo: TMemo;
ProductName: TLabel;
Copyright: TLabel;
Label1: TLabel;
ProgramIcon: TImage;
LblVer: TLabel;
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
uses commmain;
{$R *.dfm}
procedure TAboutBox.FormShow(Sender: TObject);
begin
ProductName.Caption:=Application.Title;
LblVer.Caption:=version;
end;
end.
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -