Unit2.pas
上传用户:lmk588
上传日期:2013-04-16
资源大小:5120k
文件大小:1k
源码类别:

按钮控件

开发平台:

Delphi

  1. unit Unit2;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
  5.   Dialogs, WinSkinData, StdCtrls;
  6. type
  7.   TForm2 = class(TForm)
  8.     Memo1: TMemo;
  9.     Button1: TButton;
  10.     procedure FormCreate(Sender: TObject);
  11.     procedure Button1Click(Sender: TObject);
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17. var
  18.   Form2: TForm2;
  19. implementation
  20. uses Unit1;
  21. {$R *.dfm}
  22. procedure TForm2.FormCreate(Sender: TObject);
  23. begin
  24. //   Sd3.LoadFromCollection(form1.skinstore1,1);
  25. end;
  26. procedure TForm2.Button1Click(Sender: TObject);
  27. begin
  28.   Close;
  29. end;
  30. end.