NSIS MUI_UNPAGE_WELCOME 自定义信息文本

NSIS MUI_UNPAGE_WELCOME custom info text

如何覆盖卸载程序欢迎页面上的信息文本 (MUI_UNPAGE_WELCOME)? 我使用 MUI_TEXT_WELCOME_INFO_TEXT 作为安装程序欢迎页面。但是我找不到卸载程序的解决方案。

MUI_TEXT_WELCOME_INFO_TEXT 未记录为您可以设置的内容。

MUI 文档告诉您可以设置哪些定义以及它们适用的位置:

Page settings apply to a single page and should be set before inserting a page macro. The same settings can be used for installer and uninstaller pages.

!include MUI2.nsh
!define MUI_WELCOMEPAGE_TEXT "Blahblah install $(^NameDA).$\r$\n$\r$\nBlah blah blah"
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH

!define MUI_WELCOMEPAGE_TEXT "Blahblah uninstall $(^NameDA).$\r$\n$\r$\nBlah blah blah"
!insertmacro MUI_UNPAGE_WELCOME
!insertmacro MUI_UNPAGE_INSTFILES
!insertmacro MUI_UNPAGE_FINISH

!insertmacro MUI_LANGUAGE "English"