source: trunk/Packages/CoolDocking/Demo/Testing/SampleDockableForm.pas

Last change on this file was 73, checked in by chronos, 12 years ago
  • Modified: Packages are now stored as uncomporessed and are linked with relative path to project.
File size: 520 bytes
Line 
1unit SampleDockableForm;
2
3{$mode delphi}
4
5interface
6
7uses
8 Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
9 StdCtrls, UCDClient;
10
11type
12
13 { TDockableForm }
14
15 TDockableForm = class(TForm)
16 CoolDockClient1: TCDClient;
17 ImageList1: TImageList;
18 Memo1: TMemo;
19 private
20 { private declarations }
21 public
22 { public declarations }
23 end;
24
25var
26 DockableForm: TDockableForm;
27
28implementation
29
30initialization
31 {$I SampleDockableForm.lrs}
32
33end.
34
Note: See TracBrowser for help on using the repository browser.