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

📄 unit1.pas.~5~

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