lasarus_compotents/RXLib/.svn/pristine/1f/1fe5ef24fe2791a9fb2053479a209efd1d4d9059.svn-base

35 lines
428 B
Plaintext

unit AboutUnit;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, Buttons,
StdCtrls;
type
{ TAboutForm }
TAboutForm = class(TForm)
BitBtn1: TBitBtn;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
private
{ private declarations }
public
{ public declarations }
end;
var
AboutForm: TAboutForm;
implementation
{$R *.lfm}
end.