about.pas
资源名称:winskin.rar [点击查看]
上传用户:lmk588
上传日期:2013-04-16
资源大小:5120k
文件大小:0k
源码类别:
按钮控件
开发平台:
Delphi
- unit about;
- interface
- uses Windows, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls;
- type
- TAboutBox = class(TForm)
- Panel1: TPanel;
- OKButton: TButton;
- ProgramIcon: TImage;
- ProductName: TLabel;
- Version: TLabel;
- Copyright: TLabel;
- Comments: TLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- AboutBox: TAboutBox;
- implementation
- {$R *.dfm}
- end.