是否可以在Qt安装程序框架页面中插入超链接?

时间:2018-08-15 13:56:42

标签: qt-installer

我正在使用QtIFW 3.0,并希望在安装程序页面上显示超链接。例如:

Component.prototype.isInstalled = function()
{
    if (!isDependencyInstalled()) {
        installer.setValue("component_errors", 
        installer.value("component_errors") + ";;;"
              + "Error in component: " + component.name + ";;;"
                       + "Could not find installation requirement: Blah" + ";;;"
                       + "Please fullfill this requirement and then return to rerun this installer." + ";;;"
                       + "For more information see: https://somethingsomething.com/en/download/");

        installer.setValue("ComponentError", true);
        return;
    }
}

https://somethingsomething.com/en/download/是页面上可单击的链接。

我尝试了简单的HTML标记,但是似乎不支持。也无法在QtIFW文档中找到示例。

0 个答案:

没有答案