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, StdCtrls, WinSkinForm, ExtCtrls, Buttons;
  6. type
  7.   TForm2 = class(TForm)
  8.     Button1: TButton;
  9.     Panel1: TPanel;
  10.     Edit1: TEdit;
  11.     CheckBox1: TCheckBox;
  12.     SpeedButton1: TSpeedButton;
  13.     procedure Button1Click(Sender: TObject);
  14.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20. var
  21.   Form2: TForm2;
  22. implementation
  23. uses unit1;
  24. {$R *.dfm}
  25. procedure TForm2.Button1Click(Sender: TObject);
  26. begin
  27. //        showmessage('form2.button1 click');
  28. //   form1.skindata1.skinfile:='skin0063.skn';
  29.    close;
  30. end;
  31. procedure TForm2.FormClose(Sender: TObject; var Action: TCloseAction);
  32. begin
  33. //  showmessage('form2 closing');
  34.   Action := caFree;
  35. end;
  36. end.