ISaferAbout.pas
上传用户:xiuanze55
上传日期:2017-08-03
资源大小:1080k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit ISaferAbout;
  2. interface
  3. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  4.   Buttons, ExtCtrls;
  5. type
  6.   TISaferAboutDlg = class(TForm)
  7.     Panel1: TPanel;
  8.     ProductName: TLabel;
  9.     Version: TLabel;
  10.     Copyright: TLabel;
  11.     OKButton: TButton;
  12.     ProgramIcon: TImage;
  13.     Label1: TLabel;
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19. var
  20.   ISaferAboutDlg: TISaferAboutDlg;
  21. implementation
  22. {$R *.dfm}
  23. end.
  24.