untAbout.pas
上传用户:sinothink
上传日期:2022-07-15
资源大小:459k
文件大小:1k
源码类别:

远程控制编程

开发平台:

Delphi

  1. {南域剑盟    www.98exe.com   上兴QQ:51992
  2.  声明:程序由南域剑盟98exe.com成员网上搜集,不承担技术及版权问题}
  3. unit untAbout;
  4. interface
  5. uses
  6.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  7.   Dialogs, StdCtrls;
  8. type
  9.   TForm8 = class(TForm)
  10.     Label1: TLabel;
  11.     Label2: TLabel;
  12.     Label3: TLabel;
  13.     Label4: TLabel;
  14.     Label5: TLabel;
  15.     Button1: TButton;
  16.     procedure Button1Click(Sender: TObject);
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22. var
  23.   Form8: TForm8;
  24. implementation
  25. {$R *.dfm}
  26. procedure TForm8.Button1Click(Sender: TObject);
  27. begin
  28.   Close;
  29. end;
  30. end.