문제

How do I create a shortcut hotkey for an icon in Inno Setup?

The website says add this:

HotKey: ctrl + alt + k

Does anyone have sample code?

도움이 되었습니까?

해결책

The HotKey is an optional parameter for [Icons] section entries, so simply add it to your icon entry e.g. this way:

[Icons]
Name: "{group}\My Program"; Filename: "{app}\MYPROG.EXE"; WorkingDir: "{app}"; \
    HotKey: "ctrl+alt+k"
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top