这是以前的内容, 应该从 http://www.cnblogs.com/del/archive/2008/06/06/1215319.html 开始!
unit Unit1;

interface

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

type
  TForm1 = class(TForm)
    procedure FormPaint(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

uses GDIPAPI,GDIPOBJ; {在 Library path 中引入相关路径后, uses 这两个单元}

procedure TForm1.FormPaint(Sender: TObject);
begin
  //开始工作
end;

end.

相关文章:

  • 2021-08-21
  • 2021-08-09
  • 2021-08-02
  • 2021-10-12
  • 2021-04-04
  • 2021-06-08
  • 2021-09-04
  • 2021-11-21
猜你喜欢
  • 2022-12-23
  • 2021-10-13
  • 2021-05-21
  • 2022-01-06
  • 2022-12-23
相关资源
相似解决方案