jvcl driver development envionment

源代码在线查看: bkgnddemo.dpr

软件大小: 11078 K
上传用户: haowfei
关键词: development envionment driver jvcl
下载地址: 免注册下载 普通下载 VIP

相关代码

				program BkgndDemo;
				
				uses
				  Forms,
				  MDIBkgndDemoMain in 'MDIBkgndDemoMain.pas' {MDIMainForm},
				  MDIBkgndDemoSettings in 'MDIBkgndDemoSettings.pas' {BkgndImageSettings},
				  MDIBkgndDemoFrame in 'MDIBkgndDemoFrame.pas' {DemoFrame: TFrame},
				  MDIBkgndDemoChld in 'MDIBkgndDemoChld.pas' {MDIChildForm};
				
				{$R *.RES}
				
				begin
				  Application.Initialize;
				  Application.Title := 'MDI Wallpaper demo';
				  Application.CreateForm(TMDIMainForm, MDIMainForm);
				  Application.CreateForm(TBkgndImageSettings, BkgndImageSettings);
				  Application.CreateForm(TMDIChildForm, MDIChildForm);
				  Application.Run;
				end.
							

相关资源