pianoex.dpr
来自「Delphi钢琴源码」· DPR 代码 · 共 22 行
DPR
22 行
program PianoEx;
uses
Forms,
fMain in 'fMain.pas' {frmMain},
fNotes in 'fNotes.pas' {frmNotes},
fInfo in 'fInfo.pas' {frmInfo};
{$R *.RES}
begin
// mmPopupMsgDlg := True;
// mmShowObjectInfo := True;
// mmUseObjectList := True;
// mmSaveToLogFile := True;
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?