About1.pas
上传用户:psxgmh
上传日期:2013-04-08
资源大小:15112k
文件大小:1k
- unit About1;
- {$WARN SYMBOL_PLATFORM OFF}
- interface
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, ExtCtrls, Buttons;
- type
- TExamAppAbout = class(TForm)
- CtlImage: TSpeedButton;
- NameLbl: TLabel;
- OkBtn: TButton;
- CopyrightLbl: TLabel;
- DescLbl: TLabel;
- end;
- procedure ShowExamAppAbout;
- implementation
- {$R *.DFM}
- procedure ShowExamAppAbout;
- begin
- with TExamAppAbout.Create(nil) do
- try
- ShowModal;
- finally
- Free;
- end;
- end;
- end.