unit1.pas.~3~

来自「delphi插件编程演示」· ~3~ 代码 · 共 54 行

~3~
54
字号
unit Unit1;

interface

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

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

var
  Form1: TForm1;

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

implementation

{$R *.dfm}

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

function ShowDLLForm(AHandle: THandle; ACaption: string): boolean;
var
  aForm: Tform1;
begin
  result := true;
  try
    application.handle := AHandle; 
    aForm := Tform1.create(application);
    try
      aForm.caption := ACaption;
      aForm.ShowModal;
    finally
      aForm.free;
    end;
  except
    result := false;
  end;
end;
end.

⌨️ 快捷键说明

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