Repository URL to install this package:
|
Version:
2.0.10 ▾
|
lazarus-project
/
usr
/
share
/
lazarus
/
2.0.10
/
components
/
customdrawn
/
examples
/
controls
/
cdcontrolstest.lpr
|
|---|
program cdcontrolstest;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, mainform, toolbartest
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Initialize;
Application.CreateForm(TformCDControlsTest, formCDControlsTest);
Application.CreateForm(TFormToolBar, FormToolBar);
Application.Run;
end.