|
program Layers_DragDrop;
|
|
|
|
uses
|
|
Forms,
|
|
uMain in 'uMain.pas' {MainForm};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
// ReportMemoryLeaksOnShutdown := True;
|
|
|
|
Application.Initialize;
|
|
Application.Title := 'Layers Drag Drop Demo';
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|