AboutFrm.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit AboutFrm;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, ExtCtrls, StdCtrls,Global, BusinessSkinForm, bsSkinCtrls, jpeg,shellapi,
  6.   RxGIF;
  7. type
  8.   TAboutForm = class(TForm)
  9.     bsSkinButton1: TbsSkinButton;
  10.     bsBusinessSkinForm1: TbsBusinessSkinForm;
  11.     procedure FormShow(Sender: TObject);
  12.     procedure bsSkinButton1Click(Sender: TObject);
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18. var
  19.   AboutForm: TAboutForm;
  20. implementation
  21. uses RealMessengerImpl;
  22. {$R *.dfm}
  23. procedure TAboutForm.FormShow(Sender: TObject);
  24. var
  25.   Major1,
  26.   Major2,
  27.   Minor1,
  28.   Minor2: Integer;
  29. begin
  30. end;
  31. procedure TAboutForm.bsSkinButton1Click(Sender: TObject);
  32. begin
  33. //close;
  34. end;
  35. end.