Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将 Delphi IDE 菜单项 Tools->JCL Options... 移动到工具菜单的底部?
在JclOtaActions.pas,在TJclOTAActionExpert.RegisterCommands它注册菜单项:
JclOtaActions.pas
TJclOTAActionExpert.RegisterCommands
ToolsMenuItem.Insert(0, FConfigurationMenuItem);
我想如果你把它改成:
ToolsMenuItem.Add(FConfigurationMenuItem);
然后它会在底部。
希望这能为您指明正确的方向...