| 1 |
lars |
1 |
<com:TContent ID="body">
|
|
|
2 |
|
|
|
3 |
<h2>A Single-Step Wizard</h2>
|
|
|
4 |
|
|
|
5 |
<com:TWizard ID="Wizard1"
|
|
|
6 |
BackColor="#FFFBD6"
|
|
|
7 |
Width="400px"
|
|
|
8 |
SideBarStyle.Width="120px"
|
|
|
9 |
HeaderText="Please let us know your preference"
|
|
|
10 |
OnCompleteButtonClick="wizardCompleted" >
|
|
|
11 |
|
|
|
12 |
<com:TWizardStep Title="Step 1">
|
|
|
13 |
<h3>Wizard Step 1</h3>
|
|
|
14 |
<p>
|
|
|
15 |
Your favorite color:
|
|
|
16 |
<com:TDropDownList ID="DropDownList1">
|
|
|
17 |
<com:TListItem Value="Red" />
|
|
|
18 |
<com:TListItem Value="Blue" />
|
|
|
19 |
<com:TListItem Value="Green" />
|
|
|
20 |
<com:TListItem Value="Purple" />
|
|
|
21 |
<com:TListItem Value="Black" />
|
|
|
22 |
<com:TListItem Value="Yellow" />
|
|
|
23 |
<com:TListItem Value="Orange" />
|
|
|
24 |
<com:TListItem Value="Pink" />
|
|
|
25 |
<com:TListItem Value="Cyan" />
|
|
|
26 |
</com:TDropDownList>
|
|
|
27 |
</p>
|
|
|
28 |
</com:TWizardStep>
|
|
|
29 |
|
|
|
30 |
<com:TWizardStep Title="Step 2" StepType="Complete">
|
|
|
31 |
<h3>Wizard Step 2</h3>
|
|
|
32 |
<p>
|
|
|
33 |
<com:TLabel ID="Result" />
|
|
|
34 |
</p>
|
|
|
35 |
</com:TWizardStep>
|
|
|
36 |
|
|
|
37 |
</com:TWizard>
|
|
|
38 |
|
|
|
39 |
<div class="last-modified">$Id: Sample1.page 1650 2007-01-24 06:55:32Z wei $</div></com:TContent>
|