mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 15:18:09 +02:00
16 lines
312 B
ObjectPascal
16 lines
312 B
ObjectPascal
program ChildSizingLayout;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms
|
|
{ add your units here }, MainUnit, RunTimeTypeInfoControls;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TChildsizingLayoutDemoForm, ChildsizingLayoutDemoForm);
|
|
Application.Run;
|
|
end.
|
|
|