Install Options documentation
Fonts and colorsThen it shows:
If you want to use custom fonts or colors on your InstallOptions dialogs, you should use the initDialog and show functions.
Function FunctionName ;FunctionName defined with Page commandmmm, where are the colors? :)
;Display the Install Options dialog
Push $R0
Push $R1
Push $R2
InstallOptions::initDialog /NOUNLOAD $PLUGINSDIR\test.ini
Pop $R0
GetDlgItem $R1 $R0 1200 ;1200 + Field number - 1
;$R1 contains the HWND of the first field
CreateFont $R2 "Tahoma" 10 700
SendMessage $R1 ${WM_SETFONT} $R2 0
InstallOptions::show
Pop $R1
Pop $R1
Pop $R0
FunctionEnd