Is it possible to add pages dynamically when using WiX
I am currently evaluating installer technology. One of the main tasks I need to complete is to be able to take a number from a user and to repeat a set of pages that number of times.
I can see how to add a new page into WiX but is there anyway to dynamically show pages according to user 开发者_开发百科input - this is not a choice of one flow or another.
Thanks
As Wimmel suggested you may want to put a maximum number of dialogs in your installer but then display only some of them depending on user input. If that's not a viable option then maybe you can use external UI handler and write the whole GUI in language of choice. (Hint: I have written a tool called SharpSetup that simplifies the job for C#.)
精彩评论