1
0
Fork 0
lazarus-tutorials/label_properties/label_properties.lpr

24 lines
459 B
ObjectPascal

program label_properties;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, label_form
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Title:='label_properties';
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TpropertiesForm, propertiesForm);
Application.Run;
end.