⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unit1.pas.~3~

📁 delphi插件编程演示
💻 ~3~
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -