
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@639 8e941d3f-bd1b-0410-a28a-d453659cc2b4
40 lines
528 B
ObjectPascal
40 lines
528 B
ObjectPascal
unit uTestForm;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls;
|
|
|
|
type
|
|
|
|
{ TfrmTestForm }
|
|
|
|
TfrmTestForm = class(TForm)
|
|
Button1: TButton;
|
|
procedure Button1Click(Sender: TObject);
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
frmTestForm: TfrmTestForm;
|
|
|
|
implementation
|
|
|
|
{ TfrmTestForm }
|
|
|
|
procedure TfrmTestForm.Button1Click(Sender: TObject);
|
|
begin
|
|
Close;
|
|
end;
|
|
|
|
initialization
|
|
{$I utestform.lrs}
|
|
|
|
end.
|
|
|