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.

Published Tuesday, April 29, 2003 11:30 PM by StarPilot

Comments

# re: XML Driven Wizard in C#

Wednesday, April 30, 2003 4:42 AM by .S.Rod.
What about Paul DiLascia's Xml-based UIs ? (http://msdn.microsoft.com/msdnmag/issues/02/11/NETGUIBliss/default.aspx)

# re: XML Driven Wizard in C#

Thursday, January 22, 2004 8:57 AM by k
k

# re: XML Driven Wizard in C#

Thursday, January 22, 2004 4:38 PM by Keith 'StarPilot' Barrows
I'll need to take a look at these. Thanks!

Leave a Comment

(required) 
(required) 
(optional)
(required)