我在用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我得到了
但我需要的是
我该怎么做才能得到我想要的布局?
发布于 2014-01-27 09:48:23
设置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}https://stackoverflow.com/questions/21377364
复制相似问题