unit2.pas

来自「delphi插件编程演示」· PAS 代码 · 共 51 行

PAS
51
字号
unit Unit2;

interface

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

type
  TForm2 = class(TForm)
    Label1: TLabel;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form2: TForm2;

//打开本窗口
function ShowDLLForm(AHandle: THandle; ACaption: string): Boolean; stdcall;
//输出标题
function GetCaption: Pchar; stdcall;

implementation

{$R *.dfm}

function GetCaption: Pchar; stdcall;
begin
  Result := '插件演示NO2';
end;

function ShowDLLForm(AHandle: THandle; ACaption: string): boolean;
begin
  result:=true;
  application.Handle:=aHandle;
  with TForm2.Create(application) do
  begin
    try
      caption:=ACaption;
      showmodal;
    finally
      free;
    end;
  end;
end;

end.

⌨️ 快捷键说明

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