19 lines
636 B
ObjectPascal
19 lines
636 B
ObjectPascal
|
|
program StylesCardViewDemo;
|
||
|
|
|
||
|
|
uses
|
||
|
|
Forms,
|
||
|
|
StylesCardViewDemoMain in 'StylesCardViewDemoMain.pas' {StylesCardViewDemoMainForm},
|
||
|
|
StylesCardViewDemoData in 'StylesCardViewDemoData.pas' {StylesCardViewDemoMainDM: TDataModule},
|
||
|
|
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo},
|
||
|
|
DemoUtils in '..\DemoUtils.pas';
|
||
|
|
|
||
|
|
{$R *.res}
|
||
|
|
|
||
|
|
begin
|
||
|
|
Application.Initialize;
|
||
|
|
Application.Title := 'ExpressQuantumGrid StylesCardView Demo';
|
||
|
|
Application.CreateForm(TStylesCardViewDemoMainForm, StylesCardViewDemoMainForm);
|
||
|
|
Application.CreateForm(TStylesCardViewDemoMainDM, StylesCardViewDemoMainDM);
|
||
|
|
Application.Run;
|
||
|
|
end.
|