如何在Back / Next按钮附近的下部区域添加链接

时间:2013-01-22 16:23:15

标签: nsis

我想在安装程序窗口的左下角添加指向我们公司网站的链接,但由于它不在可编辑区域,因此不知道如何操作(我使用NSIS Dialog Designer来设计我们的自定义页):

enter image description here

我找到了如何添加按钮here,但我需要一个链接。

希望你能帮助我。

1 个答案:

答案 0 :(得分:1)

此示例使用Linker plug-in将brandingtext标签转换为链接控件。如果您需要brandingtext和URL,则需要使用Resource Hacker + ChangeUI添加另一个标签,或者使用System::Call user32::CreateWindowEx(...)

在运行时添加它
BrandingText /TRIMRIGHT "Visit our homepage"

Function .onGuiInit
GetDlgItem $0 $HWNDPARENT 0x404
EnableWindow $0 1 ; Branding text control is usually disabled
Linker::link /NOUNLOAD $0 "http://www.example.com/"
FunctionEnd

Function .onGuiEnd
Linker::unload
FunctionEnd

Page Components
Page Instfiles

Section
SectionEnd