mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-04 05:59:49 +01: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.
 | 
						|
 |