Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我试图构建一个定制的 Wix 设置项目时,我需要包含一个许可协议界面。使用 WixUiExtension 我可以用这段代码轻松完成
<WixVariable Id="WixUILicenseRtf" Value="sample.rtf" />
但是,如何在不使用 WixUiExtension 的情况下以自定义的 .wxs 形式获取此 .rtf 文件?
UI在标签中这样定义它:
UI
<Control Id="LicenseText" Type="ScrollableText" X="20" Y="60" Width="330" Height="140" Sunken="yes" TabSkip="no"> <Text SourceFile="sample.rtf" /> </Control>