XML Driven Wizard in C#
I am putting together a Wizard Form - you know, the type that asks many questions in a sequence - in C# for Windows UIs. So far, it seems to be working out quite well. The basic form of my XML is something like:
<Wizard>
<Page>
<Band>
<DisplayElement type="" name="" caption="" return="">
<ActionElelment id="" text=""/>
<ActionElelment id="" text=""/>
<ActionElelment id="" text=""/>
</DisplayElement>
<DisplayElement type="" name="" caption="" return="">
<ActionElelment id="" text=""/>
<ActionElelment id="" text=""/>
<ActionElelment id="" text=""/>
</DisplayElement>
</Band>
<Band>
<DisplayElement type="" name="" caption="" return="">
<ActionElelment id="" text=""/>
<ActionElelment id="" text=""/>
<ActionElelment id="" text=""/>
</DisplayElement>
<DisplayElement type="" name="" caption="" return="">
<ActionElelment id="" text=""/>
<ActionElelment id="" text=""/>
<ActionElelment id="" text=""/>
</DisplayElement>
</Band>
</Page>
</Wizard>
As you can see, this is really a rough outline of where I'm headed. So, as I perfect things I will continue posting here.