32 lines
458 B
ObjectPascal
32 lines
458 B
ObjectPascal
![]() |
unit AboutForm;
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
|
||
|
Buttons, ExtCtrls;
|
||
|
|
||
|
type
|
||
|
TfrmAbout = class(TForm)
|
||
|
Panel1: TPanel;
|
||
|
ProgramIcon: TImage;
|
||
|
ProductName: TLabel;
|
||
|
Version: TLabel;
|
||
|
Copyright: TLabel;
|
||
|
Comments: TLabel;
|
||
|
OKButton: TButton;
|
||
|
private
|
||
|
{ Private declarations }
|
||
|
public
|
||
|
{ Public declarations }
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
frmAbout: TfrmAbout;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
{$R *.dfm}
|
||
|
|
||
|
end.
|
||
|
|