我正在尝试在默认wix的ProgressDlg中显示自定义状态消息,以下答案:
WiX: dynamically changing the status text during CustomAction
到目前为止,我在自定义操作中获得了此代码:
public class CustomActions
{
[CustomAction]
public static ActionResult CustomAction1(Session session)
{
Debugger.Launch();
session.Log("Begin CustomAction1");
MessageTest(session);
return ActionResult.Success;
}
private static void MessageTest(Session session)
{
for (int i = 0; i < 10; i++)
{
using (Record r = new Record(0))
{
r.SetString(0, $"Hello worls {i}");
session.Message(InstallMessage.ActionData, r);
}
Thread.Sleep(1000);
}
}
}
然后,在Product.wxs中有以下xml片段:
<Binary Id="CuCustomInstallActionsBinary" SourceFile="$(var.ConsoleApplication1_TargetDir)CustomAction1.CA.dll" />
<CustomAction Id="CuCustomActionOnAfterInstall" BinaryKey="CuCustomInstallActionsBinary" DllEntry="CustomAction1" Execute="deferred" HideTarget="no" Return="check" Impersonate="no" />
<InstallExecuteSequence>
<Custom Action="CuCustomActionOnAfterInstall" Before="InstallFinalize"><![CDATA[(NOT Installed) AND (NOT REMOVE)]]></Custom>
</InstallExecuteSequence>
但UI中没有显示任何内容。自定义操作运行时,状态消息仍为空。
还有什么需要做才能完成这个吗?也许怀疑<Subscribe Event="ActionData" Attribute="Text" />
我是否必须为此实现我自己的自定义ProgressDlg?
答案 0 :(得分:3)
我在@jbudreau提示之后找到了答案。 Record
实例必须有3个字段,它与ActionText MSI表中的列数相同。第一个字段必须设置为自定义操作名称,第二个字段是要显示的UI消息,第三个字段是模板值,在我的情况下不使用。此外,对session.Message()
的调用必须包含参数InstallMessage.ActionStart
。所以,最终的代码是:
public void UpdateStatus(string message)
{
using (Record r = new Record(3))
{
r.SetString(1, "CuCustomActionOnAfterInstall");
r.SetString(2, message);
session.Message(InstallMessage.ActionStart, r);
}
}
我还没有测试是否需要在ActionText中输入一个条目,通过在Product.wxs文件中放置一个ProgressText在Product标签中来完成。如果没有这个,生成的MSI文件将不包含ActionText表
<UI>
<ProgressText Action="CuCustomActionOnAfterInstall">Running post install configuration.</ProgressText>
</UI>