masterdetailtabledemo.dpr

来自「DevExpress ExpressQuantumGrid Suite v5.9」· DPR 代码 · 共 19 行

DPR
19
字号
program MasterDetailTableDemo;

uses
  Forms,
  MasterDetailTableDemoData in 'MasterDetailTableDemoData.pas' {MasterDetailTableDemoMainDM: TDataModule},
  MasterDetailTableDemoMain in 'MasterDetailTableDemoMain.pas' {MasterDetailTableDemoMainForm},
  AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo},
  DemoUtils in '..\DemoUtils.pas';

{$R *.res}

begin
  Application.Initialize;
  Application.Title := 'ExpressQuantumGrid Master Detail Table Demo';
  Application.CreateForm(TMasterDetailTableDemoMainDM, MasterDetailTableDemoMainDM);
  Application.CreateForm(TMasterDetailTableDemoMainForm, MasterDetailTableDemoMainForm);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?