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>