(对不起,我想不出更好的标题)
我有以下部分代码:
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_INSTFILES
Page Custom nsDialogsPage nsDialogsPageLeave
section Section1
#do something
sectionEnd
section Section2
#do something else
sectionEnd
Function nsDialogsPage
#do something
FunctionEnd
Function nsDialogsPageLeave
#do something else
FunctionEnd
但是,现在我希望自定义页面显示在第 1 节之后和第 2 节之前(我在第 2 节中使用的自定义页面中输入了一些信息)。我该怎么办?(我总是可以将自定义页面放在 MUI_PAGE_INSTFILES 之前,但这对用户来说看起来很奇怪。)