简体   繁体   English

卸载 NSIS 安装程序时如何更改位图图像

[英]How to change the bitmap image when uninstalling the NSIS installer

How to change the bitmap image when uninstalling the NSIS installer?卸载 NSIS 安装程序时如何更改位图图像?

Because here I didn't find any ID.因为在这里我没有找到任何ID。

When installing the NSIS installer, I changed the bitmap image of the welcome screen using the below code:安装 NSIS 安装程序时,我使用以下代码更改了欢迎屏幕的位图图像:

!define MUI_WELCOMEFINISHPAGE_BITMAP "\NULLSOFT\src\Bitmaps\uninstwiz.bmp"

Similarly please suggest me how to change the bitmap image when uninstalling the software.同样请建议我如何在卸载软件时更改位图图像。

!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"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM