how can i use a Feature name like a inner text condition in a <UI> </UI> frame?
i want to use a Feature state like inner text in a Publish element.
this is my code:
<Feature Id="Complete" Title="App"
Display="expand" Level="1" AllowAdvertise='no' InstallDefault='local'>
...
</Feature>
<UI>
...
<Publish Dialog="CustomizeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg"> ¿¿¿????</Publis开发者_运维百科h>
...
</UI>
I want to replace the ¿¿¿¿???? for something like "(&Complete = 3)"
You just need to escape the XML.
Something like &Complete=3
精彩评论