簡體   English   中英

使用NSIS安裝軟件時,如何設置進度條文本?

[英]When installing the software using NSIS how to set the progress bar text?

安裝軟件時,我看到每個dll或可執行文件名稱的進度。 我如何隱藏它(例如,在下面的屏幕快照中,它顯示Extract res.dll 100%)並顯示我自己的進度文本(例如,狀態:安裝EMR應用程序)

在此處輸入圖片說明

SetDetailsPrint控制是否在標簽和/或列表框中顯示說明。

Section
DetailsPrint "Start"
SetDetailsPrint listonly
DetailsPrint "Hello"
File 1234.txt ; List only
Sleep 3333
SetDetailsPrint none
DetailsPrint "World
File 5678.txt ; "Hidden"
Sleep 3333
SetDetailsPrint both
DetailsPrint "Finished"
SectionEnd

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM