📄 sample.dpr
字号:
program sample;
uses
Forms,
inherit in 'inherit.pas' {FormInheritance},
base in 'base.pas' {FormBaseReport},
CustList in 'CustList.pas' {FormCustomerListing},
CustOrd in 'CustOrd.pas' {FormCustomerOrders},
CustItem in 'CustItem.pas' {FormCustomerOrdersItems},
Client in 'Client.pas' {FormClientListing};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TFormInheritance, FormInheritance);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -