aboutform.pas

来自「《Delphi COM深入编程》原书光盘」· PAS 代码 · 共 35 行

PAS
35
字号
unit AboutForm;

interface

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

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

procedure ShowFriendFormXAbout;

implementation

{$R *.DFM}

procedure ShowFriendFormXAbout;
begin
  with TFriendFormXAbout.Create(nil) do
    try
      ShowModal;
    finally
      Free;
    end;
end;

end.

⌨️ 快捷键说明

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