我想在安装程序窗口的左下角添加指向我们公司网站的链接,但由于它不在可编辑区域,因此不知道如何操作(我使用NSIS Dialog Designer来设计我们的自定义页):
我找到了如何添加按钮here,但我需要一个链接。
希望你能帮助我。
答案 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