我如何找到欢迎向导页面ID?(How do i find the welcome wizard pages id? Innosetup)
我正在使用ITD工具插件通过互联网下载文件文件,我需要Wizardpage的ID,之后我想要下载屏幕。 我需要欢迎屏幕ID。 我怎么知道这个? 我在网上搜索了这个,但找不到它。 我需要这个作为我的ITD_DownloadAfter()函数的参数。
I am using the ITD tools plugin to download a file file over the internet and i need the Wizardpage's id after which i want the download screen. I need the welcome screens id. How can i know this? I searched for this online and couldn't find it. I need this as an argument in my ITD_DownloadAfter() function.
原文:https://stackoverflow.com/questions/40675548
最满意答案
不要使用硬编码ID但使用Inno Setup Constants:
预定义向导页面的PageID值:
wpWelcome,wpLicense,wpPassword,wpInfoBefore,wpUserInfo,wpSelectDir,wpSelectComponents,wpSelectProgramGroup,wpSelectTasks,wpReady,wpPreparing,wpInstalling,wpInfoAfter,wpFinished
Do not use hardcoded IDs but use Inno Setup Constants:
PageID values for predefined wizard pages:
wpWelcome, wpLicense, wpPassword, wpInfoBefore, wpUserInfo, wpSelectDir, wpSelectComponents, wpSelectProgramGroup, wpSelectTasks, wpReady, wpPreparing, wpInstalling, wpInfoAfter, wpFinished
See the manual for more info.