!include "MUI2.nsh"
!include "CreateIPaddress.nsh"
Name "Program"
OutFile Program.exe
InstallDir $Temp
!insertmacro MUI_PAGE_DIRECTORY
Page custom CreatePage
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_LANGUAGE "English"
Section Install
SectionEnd
Function CreatePage
!insertmacro MUI_HEADER_TEXT "Set IP address" "Please input the IP address you want to set"
nsDialogs::Create 1018
Pop $0
${If} $0 == error
Abort
${EndIf}
${NSD_CreateLabel} 0u 2u 64u 8u "Input IP address:"
${NSD_CreateIPaddress} 70u 0u 80u 12u ""
nsDialogs::Show
FunctionEnd On the custom page, click back, then the font of directory selection page turns large:Click next, the font of the custom page also changes, not the former one.