Session.Message在WiX中显示两个带有相同文本的按钮

时间:2013-06-24 18:34:23

标签: wix custom-action

我正在尝试在自定义操作失败期间显示消息,但对话框显示两个具有相同文本Close的按钮,如下图所示。有没有办法将文本更改为更有意义的内容?

enter image description here

以下是代码:

Record recordErrorMsg = new Record();
recordErrorMsg.FormatString = "Custom action error";
session.Message(
                InstallMessage.Error |
               (InstallMessage)MessageIcon.Error |
               (InstallMessage)MessageButtons.RetryCancel,
               recordErrorMsg);

0 个答案:

没有答案