git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@21 05c56307-c608-d34a-929d-697000501d7a
18 lines
612 B
ObjectPascal
18 lines
612 B
ObjectPascal
program CustomRowHeightDemo;
|
|
|
|
uses
|
|
Forms,
|
|
CustomRowHeightDemoMain in 'CustomRowHeightDemoMain.pas' {CustomRowHeightDemoMainForm},
|
|
CustomRowHeightDemoData in 'CustomRowHeightDemoData.pas' {CustomRowHeightDemoDataDM: TDataModule},
|
|
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'ExpressQuantumGrid CustomRowHeight Demo';
|
|
Application.CreateForm(TCustomRowHeightDemoMainForm, CustomRowHeightDemoMainForm);
|
|
Application.CreateForm(TCustomRowHeightDemoDataDM, CustomRowHeightDemoDataDM);
|
|
Application.Run;
|
|
end.
|