about1.pas

来自「Delphi basic program. Basic programing」· PAS 代码 · 共 36 行

PAS
36
字号
unit About1;

{$WARN SYMBOL_PLATFORM OFF}

interface

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

type
  TmyActiveXAbout = class(TForm)
    CtlImage: TSpeedButton;
    NameLbl: TLabel;
    OkBtn: TButton;
    CopyrightLbl: TLabel;
  end;

procedure ShowmyActiveXAbout;

implementation

{$R *.DFM}

procedure ShowmyActiveXAbout;
begin
  with TmyActiveXAbout.Create(nil) do
    try
      ShowModal;
    finally
      Free;
    end;
end;

end.

⌨️ 快捷键说明

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