source: trunk/DockForms/UObjectInspector.pas

Last change on this file was 1, checked in by george, 15 years ago
  • New: Imported base application with sample docked windows.
File size: 521 bytes
Line 
1unit UObjectInspector;
2
3interface
4
5uses
6 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
7 Dialogs, Tabs, DockTabSet, StdCtrls, ComCtrls, UDockManagement, Grids,
8 ValEdit;
9
10type
11 TObjectInspector = class(TDDockForm)
12 ComboBox1: TComboBox;
13 ValueListEditor1: TValueListEditor;
14 TabSet1: TTabSet;
15 private
16 { Private declarations }
17 public
18 { Public declarations }
19 end;
20
21var
22 ObjectInspector: TObjectInspector;
23
24implementation
25
26{$R *.dfm}
27
28end.
Note: See TracBrowser for help on using the repository browser.