About1.pas
上传用户:psxgmh
上传日期:2013-04-08
资源大小:15112k
文件大小:1k
源码类别:

Delphi/CppBuilder

开发平台:

Delphi

  1. unit About1;
  2. {$WARN SYMBOL_PLATFORM OFF}
  3. interface
  4. uses
  5.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  6.   StdCtrls, ExtCtrls, Buttons;
  7. type
  8.   TExamAppAbout = class(TForm)
  9.     CtlImage: TSpeedButton;
  10.     NameLbl: TLabel;
  11.     OkBtn: TButton;
  12.     CopyrightLbl: TLabel;
  13.     DescLbl: TLabel;
  14.   end;
  15. procedure ShowExamAppAbout;
  16. implementation
  17. {$R *.DFM}
  18. procedure ShowExamAppAbout;
  19. begin
  20.   with TExamAppAbout.Create(nil) do
  21.     try
  22.       ShowModal;
  23.     finally
  24.       Free;
  25.     end;
  26. end;
  27. end.