git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@7 05c56307-c608-d34a-929d-697000501d7a
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.
|