如何将图像添加到自定义 WiX 对话框?
我尝试修改 Product.wxs 中的 WixVariables 集,如下所示:(
<WixVariable Id="MainLogoBmp" Value="Resources/Images/weblabel.jpg" />
<WixVariable Id="WixUIBannerBmp" Value="Resources/Images/installer_banner.jpg" />
第一部分是我尝试过的,下面的部分是有效的 stock 变量的示例)
...然后用 !( 引用该变量wix.MainLogoBmp):
<Control Id="Bitmap"
Type="Bitmap"
X="0"
Y="0"
Width="258"
Height="185"
TabSkip="no"
Text="!(wix.MainLogoBmp)" />
...但是当我尝试编译它时,出现以下错误:
错误 17 ICE17: 位图: 'Resources/Images/weblabel.jpg' for Control: 'Bitmap' of Dialog: 'SimpleDlg' not found在二进制表中
,是的,图像是项目的一部分,像其他图像一样设置为“内容”。
I have tried modifying the set of WixVariables in my Product.wxs like so:
<WixVariable Id="MainLogoBmp" Value="Resources/Images/weblabel.jpg" />
<WixVariable Id="WixUIBannerBmp" Value="Resources/Images/installer_banner.jpg" />
(The first part is what I tried, the one below it is an example of the stock variable that works)
...and then referencing the variable with !(wix.MainLogoBmp):
<Control Id="Bitmap"
Type="Bitmap"
X="0"
Y="0"
Width="258"
Height="185"
TabSkip="no"
Text="!(wix.MainLogoBmp)" />
...but when I try to compile this I get the following error:
Error 17 ICE17: Bitmap: 'Resources/Images/weblabel.jpg' for Control: 'Bitmap' of Dialog: 'SimpleDlg' not found in Binary table
And yes the image is part of the project, set to "Content" like the other ones.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
啊哈,原来我需要向文件添加一个
Binary
元素:...并将位图
Control
的Text
设置为“ MainImage”:现在可以了。 :)
Aha, turns out I needed to add a
Binary
element to the file:...and to set the
Text
of the BitmapControl
to "MainImage":and now it works. :)