- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个可以在 Visual Studio 2010 Professional 中正确构建的 WiX 3.8 安装程序 Product.wxs
。
我只是想修改安装程序的步骤工作流程,所以我在 Wix/Product/Package XML 元素之后添加了这个:
<UI>
<Publish Dialog="WelcomeDlg"
Control="Next"
Event="NewDialog"
Value="InstallDirDlg"
Order="2">1</Publish>
<Publish Dialog="InstallDirDlg"
Control="Back"
Event="NewDialog"
Value="WelcomeDlg"
Order="2">1</Publish>
</UI>
问题:WiX 现在失败并显示此消息:
Error 13 ICE17: PushButton: 'Next' of Dialog: 'InstallDirDlg' does not have an event defined in the ControlEvent table. It is a 'Do Nothing' button. C:\src\wix38\src\ext\UIExtension\wixlib\InstallDirDlg.wxs 14 1 Installer
我做错了什么?
最佳答案
我认为您需要引用您正在修改的 WiX UI。试试这个:
<UI>
<UIRef Id="WixUI_InstallDir" /> <!-- Added line -->
<Publish Dialog="WelcomeDlg"
Control="Next"
Event="NewDialog"
Value="InstallDirDlg"
Order="2">1</Publish>
<Publish Dialog="InstallDirDlg"
Control="Back"
Event="NewDialog"
Value="WelcomeDlg"
Order="2">1</Publish>
</UI>
关于WiX: "PushButton: ' 对话框的下一个: 'InstallDirDlg' 没有在 ControlEvent 表中定义的事件。这是一个 'Do Nothing' 按钮。”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24623918/
我有一个按钮, 在按钮触摸时,我必须处理 多控制事件[Like, UITouchupinside,UITouchupoutside,etc] 根据事件触发不同的 Action 。 目前我正在使用不同的
我想在单独的 Controller 中创建行星列表(我的 PlanetPickerViewController )。该 Controller 使用 UITableView显示给定列表 Planet 。
由于 didSelectRowAtIndexPath 在 UITableViewCell 选择时被触发,它必须有一个像 UIControlEventTouchUpInside 的 controlEve
我们有一个 View Controller MainCollectionView,它包含一个带有多个单元格 FooCell 的 Collection View 。在每个 FooCell 中,都有一个
我在 RxSwift 中添加了两个 controlEven 文本字段我想在一个方法中做不同的事情。 textField.rx.controlEvent([.editingDidBegin, .edit
我有一个可以在 Visual Studio 2010 Professional 中正确构建的 WiX 3.8 安装程序 Product.wxs。 我只是想修改安装程序的步骤工作流程,所以我在 Wix/
我是一名优秀的程序员,十分优秀!