ISaferAbout.pas
资源名称:00011511.rar [点击查看]
上传用户:xiuanze55
上传日期:2017-08-03
资源大小:1080k
文件大小:0k
源码类别:
Delphi控件源码
开发平台:
Delphi
- unit ISaferAbout;
- interface
- uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls;
- type
- TISaferAboutDlg = class(TForm)
- Panel1: TPanel;
- ProductName: TLabel;
- Version: TLabel;
- Copyright: TLabel;
- OKButton: TButton;
- ProgramIcon: TImage;
- Label1: TLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- ISaferAboutDlg: TISaferAboutDlg;
- implementation
- {$R *.dfm}
- end.