unit7.pas

来自「Dicom Delphi code 看DICOM图像」· PAS 代码 · 共 47 行

PAS
47
字号
unit Unit7;

interface

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

type
  TfrmAbout = class(TForm)
    Button1: TButton;
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    Label7: TLabel;
    procedure Button1Click(Sender: TObject);
    procedure FormShow(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  frmAbout: TfrmAbout;

implementation

uses Unit1;

{$R *.dfm}

procedure TfrmAbout.Button1Click(Sender: TObject);
begin
  frmAbout.Close;
end;

procedure TfrmAbout.FormShow(Sender: TObject);
begin
  Label7.Caption := 'Ver'+sVer;
end;

end.

⌨️ 快捷键说明

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