mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 06:21:38 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			340 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			340 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| unit fDwin;
 | |
| 
 | |
| interface
 | |
| 
 | |
| uses
 | |
|   SysUtils, Classes, QGraphics, QControls, QForms, QDialogs, QStdCtrls,
 | |
|   QExtCtrls;
 | |
| 
 | |
| type
 | |
|   Tdwin = class(TForm)
 | |
|     Memo1: TMemo;
 | |
|     Panel1: TPanel;
 | |
|     Button1: TButton;
 | |
|   private
 | |
|     { Private declarations }
 | |
|   public
 | |
|     { Public declarations }
 | |
|   end;
 | |
| 
 | |
| var
 | |
|   dwin: Tdwin;
 | |
| 
 | |
| implementation
 | |
| 
 | |
| {$R *.dfm}
 | |
| 
 | |
| end.
 | 
