Dynamic step and property creation in Wizards
I am potentially in need of creating a wizard that dynamically changes based on the user inputs beyond what is possible with the visibleon
attribute. Namely, I would like the ability to dynamically add steps and properties to the wizard based on the user's selections (e.g., enabling the user to add more properties to a list of properties as desired).
For example, I noticed that this function is available:
stp.Properties.Add(stp.Properties[0])
Where stp
is the currently active wizard step, but it gives this error: "The property name 'layt_sld' already exists." I'm therefore trying to figure out how to create a new ISimProperty
. that is independent from the existing property. I'm assuming that if I can figure out how this works for properties, that something similar will be possible for steps.
Answers
-
Bumping this to see if anyone has any ideas.
0