When I got to WizardStep, I like to populate some info depending on what was selected in the previous WizardStep. Is there is onload of a wizardstep where I can populate info into it based on certain conditions.

有帮助吗?

解决方案

Use the ActiveStepChanged event:

void OnActiveStepChanged(object sender, EventArgs e)
{
    // ...
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top