about.pas
来自「医院X光片资料管理系统—全部源码 这是源码。去年做的一个小软件。因为这是给一家」· PAS 代码 · 共 45 行
PAS
45 行
unit About;
interface
uses Windows, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TAboutBox = class(TForm)
Panel1: TPanel;
OKButton: TButton;
ProductName: TLabel;
Version: TLabel;
Copyright: TLabel;
Comments: TLabel;
Label1: TLabel;
Label2: TLabel;
procedure OKButtonClick(Sender: TObject);
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
uses mylib;
{$R *.DFM}
procedure TAboutBox.OKButtonClick(Sender: TObject);
begin
aboutbox.close;
end;
procedure TAboutBox.FormShow(Sender: TObject);
begin
version.Caption :=GetBuildInfo;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?