在卸载NSIS安装程序时如何更改位图图像?
因为在这里我没有找到任何ID。
在安装NSIS安装程序时,我使用以下代码更改了欢迎屏幕的位图图像:
!define MUI_WELCOMEFINISHPAGE_BITMAP "\Code\NULLSOFT\src\Bitmaps\dlgbmp-for-china.bmp"
类似地,请建议我在卸载软件时如何更改位图图像。
答案 0 :(得分:0)
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "c:\myfiles\uninstwiz.bmp"
!include MUI2.nsh
...
!insertmacro MUI_UNPAGE_WELCOME
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
!insertmacro MUI_UNPAGE_FINISH
!insertmacro MUI_LANGUAGE "English"