about.pas

来自「本软件是我公司开发的具有实际用途即核磁共振含油率测试分析的源代码。」· PAS 代码 · 共 38 行

PAS
38
字号
unit ABOUT;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ExtCtrls, StdCtrls;

type
  TFrmabout = class(TForm)
    Image1: TImage;
    ProductName: TLabel;
    Version: TLabel;
    Copyright: TLabel;
    Label1: TLabel;
    Comments: TLabel;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Frmabout: TFrmabout;

implementation

{$R *.dfm}

procedure TFrmabout.Button1Click(Sender: TObject);
begin
    close;
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?