jvcllaz: New component JvFormWallpaper

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6738 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-11-25 21:58:44 +00:00
parent ef2534e703
commit 9771f149db
11 changed files with 1540 additions and 4 deletions

View File

@ -0,0 +1,22 @@
program JvFormWallpaper_Demo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, main
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.