1
0
Fork 0
lazarus-tutorials/labels/umain.pas

33 lines
307 B
ObjectPascal
Raw Normal View History

2021-10-08 16:48:37 -04:00
unit umain;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls;
type
{ TForm1 }
TForm1 = class(TForm)
Button1: TButton;
Edit1: TEdit;
Label1: TLabel;
private
public
end;
var
Form1: TForm1;
implementation
{$R *.lfm}
end.