source: DockManagement/Demo/UDockForm.pas

Last change on this file was 5, checked in by chronos, 13 years ago
File size: 429 bytes
Line 
1unit UDockForm;
2
3interface
4
5uses
6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
7 Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, UDockManagement;
8
9type
10 TDockForm = class(TDDockForm)
11 Memo1: TMemo;
12 private
13 { Private declarations }
14 public
15 { Public declarations }
16 end;
17
18var
19 DockForm: TDockForm;
20
21implementation
22
23{$R *.dfm}
24
25end.
Note: See TracBrowser for help on using the repository browser.