unit1.pas.~6~

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

~6~
50
字号
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;
begin
  result:=true;
  application.Handle:=aHandle;
  with TForm1.Create(application) do
  begin
    try
      caption:=ACaption;
      showmodal;
    finally
      free;
    end;
  end;
end;
end.

⌨️ 快捷键说明

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