git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
21 lines
761 B
ObjectPascal
21 lines
761 B
ObjectPascal
program CustomDrawCardViewDemo;
|
|
|
|
{$R 'CustomDrawCardViewDemoImages.res' 'CustomDrawCardViewDemoImages.rc'}
|
|
|
|
uses
|
|
Forms,
|
|
CustomDrawCardViewDemoMain in 'CustomDrawCardViewDemoMain.pas' {CustomDrawCardViewDemoMainForm},
|
|
CustomDrawCardViewDemoData in 'CustomDrawCardViewDemoData.pas' {CustomDrawCardViewDemoMainDM: TDataModule},
|
|
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo},
|
|
DemoUtils in '..\DemoUtils.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'ExpressQuantumGrid CustomDrawCardView Demo';
|
|
Application.CreateForm(TCustomDrawCardViewDemoMainDM, CustomDrawCardViewDemoMainDM);
|
|
Application.CreateForm(TCustomDrawCardViewDemoMainForm, CustomDrawCardViewDemoMainForm);
|
|
Application.Run;
|
|
end.
|