简体   繁体   中英

How to add text to header in nsis?

I want to add header title in my welcome page page of my nsis installer like the image i had attached. I have already tried this below line but it is adding some line to title instead of header

MUI_WELCOMEPAGE_TITLE '${WELCOME_TITLE}'

So is there any way to achieve this. 在此处输入图片说明

For a normal Modern UI page you would do:

!define MUI_PAGE_HEADER_TEXT foo
!define MUI_PAGE_HEADER_SUBTEXT bar
!insertmacro MUI_PAGE_COMPONENTS

It looks like you are not using the MUI that ships with NSIS but some 3rd party add-on, check their documentation if the code above does not work...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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