【发布时间】:2021-07-01 12:38:14
【问题描述】:
我创建了一个具有先决条件的 WIX 捆绑包。现在我们的要求是将标题栏颜色改为白色,而不是 windows 标准的蓝色。
使用主题我们可以做到吗。
<Theme xmlns="http://wixtoolset.org/schemas/thmutil/2010">
<Window Width="485" Height="300" HexStyle="100a0000" FontId="0" Red="255" Green="255" Blue="255" >#(loc.Caption)</Window>
<Font Id="0" Height="-12" Weight="500" Foreground="000000" Background="FFFFFF">Segoe UI</Font>
这是我的自定义主题窗口代码。我在 WINdow 标记中添加了背景,但这不起作用。我们有什么方法可以在引导程序 UI 中更改标题栏颜色
【问题讨论】:
标签: installation wix burn