Need help with Components page leave function
Is there any example how use Modern UI leave function on Components page ?
6 posts
but why do u have a componentspage, if nothing sould be selected????!define MUI_PAGE_CUSTOMFUNCTION_LEAVE <LeaveFunctionName>
!insertmacro MUI_PAGE_COMPONENTS
[...]
Function <LeaveFunctionName>
[...]
FunctionEnd
!insertmacro SectionFlagIsSet ${section1} ${SF_SELECTED} selected notselected
selected:
MessageBox MB_OK "section 1 is selected"
Goto done
notselected:
MessageBox MB_OK "section 1 is NOT selected"
done: