我正在使用Inno设置。 我需要将我的程序图标放在公司组下的“开始”菜单中。
我的#定义:
MyAppPublisher = publisher MyAppName = game name
一些示例代码:
[Icons] Name: {group}\{#MyAppPublisher}\{#MyAppName}; Filename: {app}\{#MyAppExeName}; IconFilename: {app}\{#MyAppIcon} Name: {group}\{#MyAppPublisher}\{cm:ProgramOnTheWeb,{#MyAppName}}; Filename: {#MyAppURL} Name: {group}\{#MyAppPublisher}\{cm:UninstallProgram,{#MyAppName}}; Filename: {uninstallexe} Name: {commondesktop}\{#MyAppName}; Filename: {app}\{#MyAppExeName}; Tasks: desktopicon
我有
但我需要的是
我应该怎么做才能得到我想要的布局?
像这样设置DefaultGroupName
:
[Setup] DefaultGroupName={#MyAppPublisher}\{#MyAppName} [Icons] Name: {group}\{#MyAppName}; Filename: {app}\{#MyAppExeName}; IconFilename: {app}\{#MyAppIcon} Name: {group}\{cm:ProgramOnTheWeb,{#MyAppName}}; Filename: {#MyAppURL} Name: {group}\{cm:UninstallProgram,{#MyAppName}}; Filename: {uninstallexe}