6

我想在安装过程中显示我的自定义操作的进度文本。我在自定义操作的 WiX 进度文本中实现了代码,但它不起作用。

显示所有其他文本(例如文件副本),正确填充 ActionText 表并且 ActionText.Action 与 CustomAction.Actuib 值匹配。有谁知道出了什么问题?这是代码:

主要的 WiX 项目:

<Product>
  <CustomAction Id="MyCA" BinaryKey="MyCALib"
                DllEntry="MyCAMethod" Execute="deferred"
                Return="check" />
  <InstallExecuteSequence>
     <Custom Action="MyCA" Before="InstallFinalize" />
  </InstallExecuteSequence>
  <UI>
    <UIRef Id="MyUILibraryUI" />
  </UI>
</Product>

用户界面库:

<Wix ...><Fragment>

  <UI Id="MyUILibraryUI">

    <ProgressText Action="MyCA">Executing my funny CA...
    </ProgressText>

    ...

    <Dialog Id="Dialog_Progress" ...>
      <Control Id="Ctrl_ActionText"
               Type="Text" ...>
        <Subscribe Event="ActionData" Attribute="Text" />
      </Control>

  ...

C# 自定义动作库:

public class MyCALib
{
  [CustomAction]
  public static ActionResult MyCAMethod(Session session)
  {
      System.Threading.Thread.Sleep(10000); // to show text
      // do something
      System.Threading.Thread.Sleep(10000); // to show text

      return ActionResult.Success;
  }
}
4

1 回答 1

3

问题是您正在使用“ActionData”,但您没有使用自定义操作中的此操作数据向 UI 发送消息。

您必须添加如下内容:

public class MyCALib
{
  [CustomAction]
  public static ActionResult MyCAMethod(Session session)
  {
      using (Record record = new Record(0))
      {
          record.SetString(0, "Starting MyCAMethod");
          Session.Message(InstallMessage.ActionData, record);
      }

      System.Threading.Thread.Sleep(10000); // to show text
      // do something
      System.Threading.Thread.Sleep(10000); // to show text

      return ActionResult.Success;
  }
}

您可以从 CA 发送任意数量的消息。

如果您使用的是“ActionText”,它会起作用,但会显示自定义操作名称而没有其他/自定义信息。

您将在此处找到更多信息:

WiX:在 CustomAction 期间动态更改状态文本

于 2014-01-07T14:54:10.763 回答