28 lines
495 B
ObjectPascal
28 lines
495 B
ObjectPascal
|
|
unit UnboundModeDemoData;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
SysUtils, Classes, Forms, cxClasses, cxStyles, cxTL;
|
||
|
|
|
||
|
|
type
|
||
|
|
TUnboundModeDemoDataDM = class(TDataModule)
|
||
|
|
StyleRepository: TcxStyleRepository;
|
||
|
|
stlGroupNode: TcxStyle;
|
||
|
|
stlFixedBand: TcxStyle;
|
||
|
|
cxTreeListStyleSheet1: TcxTreeListStyleSheet;
|
||
|
|
private
|
||
|
|
{ Private declarations }
|
||
|
|
public
|
||
|
|
{ Public declarations }
|
||
|
|
end;
|
||
|
|
|
||
|
|
var
|
||
|
|
UnboundModeDemoDataDM: TUnboundModeDemoDataDM;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
{$R *.dfm}
|
||
|
|
|
||
|
|
end.
|